API Reference
TablerDataGridItem
Represents an enhanced data grid item that supports rich content types, spacing configuration, and all features from Tabler's datagrid component without exposing HTML classes to users.
Inheritance
- Element
- TablerDataGridItem
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Method TablerDataGrid.AddAvatarItem
- Method TablerDataGrid.AddAvatarListItem
- Method TablerDataGrid.AddBadgeItem
- Method TablerDataGrid.AddCheckboxItem
- Method TablerDataGrid.AddFormControlItem
- Method TablerDataGrid.AddIconItem
- Method TablerDataGrid.AddItem
- Method TablerDataGrid.AddStatusItem
- Method TablerDataGrid.Title
- Property TablerDataGrid.Items
- Method TablerDataGridItem.AsPanel
- Method TablerDataGridItem.AsPanel
- Method TablerDataGridItem.AsPanel
- Method TablerDataGridItem.AsPanel
- Method TablerDataGridItem.AvatarContent
- Method TablerDataGridItem.AvatarContent
- Method TablerDataGridItem.AvatarListContent
- Method TablerDataGridItem.BadgeContent
- Method TablerDataGridItem.CheckboxContent
- Method TablerDataGridItem.Content
- Method TablerDataGridItem.Content
- Method TablerDataGridItem.FormControlContent
- Method TablerDataGridItem.HtmlContent
- Method TablerDataGridItem.IconContent
- Method TablerDataGridItem.Ribbon
- Method TablerDataGridItem.StatusContent
- Method TablerDataGridItem.Title
- Method TablerDataGridItem.TitleInfo
- Method TablerDataGridItem.TitleInfo
- Method TablerDataGridItem.WithContentAlignment
- Method TablerDataGridItem.WithCustomClasses
- Method TablerDataGridItem.WithCustomSpacing
- Method TablerDataGridItem.WithCustomStyle
- Method TablerDataGridItem.WithCustomTitleWidth
- Method TablerDataGridItem.WithMargin
- Method TablerDataGridItem.WithPadding
- Method TablerDataGridItem.WithSpacing
- Method TablerDataGridItem.WithTitleWidth
Accepted by parameters
- Method TablerDataGrid.AddItem
- Method TablerDataGrid.AddItem
- Method TablerDataGridCard.AddItem
Constructors
public TablerDataGridItem() #Methods
public TablerDataGridItem AsPanel(Nullable<TablerColor> color = null, Boolean light = true, Nullable<TablerSpacing> paddingX = null, Nullable<TablerSpacing> paddingY = null, Nullable<TablerSpacing> marginY = null, Boolean rounded = true, Boolean border = true, Nullable<TablerColor> borderColor = null) #TablerDataGridItemApplies a native, alert-like panel appearance to the entire data grid item (title + content) without requiring raw CSS classes. This is useful for "callout" rows such as DNS Lookups/Mechanisms where a soft background, inner padding and subtle rounding improve legibility.
Parameters
- color System.Nullable{HtmlForgeX.TablerColor} = null
- Optional accent color; defaults to Secondary.
- light System.Boolean = true
- If true, uses the light variant (bg-*-lt). Otherwise uses solid background and readable text color.
- paddingX System.Nullable{HtmlForgeX.TablerSpacing} = null
- Horizontal padding scale (maps to px-*).
- paddingY System.Nullable{HtmlForgeX.TablerSpacing} = null
- Vertical padding scale (maps to py-*).
- marginY System.Nullable{HtmlForgeX.TablerSpacing} = null
- Vertical margin scale (maps to my-*).
- rounded System.Boolean = true
- Whether to add rounded corners.
- border System.Boolean = true
- Whether to render a subtle border.
- borderColor System.Nullable{HtmlForgeX.TablerColor} = null
- Optional border color.
Returns
The configured item.
public TablerDataGridItem AsPanel(RGBColor background, RGBColor text = null, Nullable<TablerSpacing> paddingX = null, Nullable<TablerSpacing> paddingY = null, Nullable<TablerSpacing> marginY = null, Boolean rounded = true, RGBColor borderColor = null) #TablerDataGridItemApplies a native panel appearance using custom RGB colors.
Parameters
- background HtmlForgeX.RGBColor
- text HtmlForgeX.RGBColor = null
- paddingX System.Nullable{HtmlForgeX.TablerSpacing} = null
- paddingY System.Nullable{HtmlForgeX.TablerSpacing} = null
- marginY System.Nullable{HtmlForgeX.TablerSpacing} = null
- rounded System.Boolean = true
- borderColor HtmlForgeX.RGBColor = null
public TablerDataGridItem AsPanel(Action<DataGridPanelOptions> options, Action<DataGridPanelContent> content) #TablerDataGridItemAccent-only panel: neutral background, optional title accent dot and left border accent, plus rich inline content via a tiny builder.
Parameters
- options System.Action{HtmlForgeX.DataGridPanelOptions}
- content System.Action{HtmlForgeX.DataGridPanelContent}
public TablerDataGridItem AsPanel(Action<DataGridPanelOptions> options) #TablerDataGridItemAccent-only panel configuration without changing the content.
Parameters
- options System.Action{HtmlForgeX.DataGridPanelOptions}
public TablerDataGridItem AvatarContent(Action<TablerAvatar> config) #TablerDataGridItemSets avatar content with user information.
Parameters
- config System.Action{HtmlForgeX.TablerAvatar}
- Configuration action for the avatar.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem AvatarContent(String userName, Action<TablerAvatar> config) #TablerDataGridItemSets avatar content with user name.
Parameters
- userName System.String
- The user name to display.
- config System.Action{HtmlForgeX.TablerAvatar}
- Configuration action for the avatar.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem AvatarListContent(params Action<TablerAvatar>[] avatarConfigs) #TablerDataGridItemSets avatar list content showing multiple users.
Parameters
- avatarConfigs System.Action{HtmlForgeX.TablerAvatar}[]
- Configuration actions for each avatar.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem BadgeContent(String text, TablerColor color = Primary, TablerBadgeStyle style = Normal) #TablerDataGridItemSets badge content using TablerBadgeSpan.
Parameters
- text System.String
- The badge text.
- color HtmlForgeX.TablerColor = Primary
- The badge color.
- style HtmlForgeX.TablerBadgeStyle = Normal
- The badge style.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem CheckboxContent(Boolean isChecked = false, String label = null, String name = null) #TablerDataGridItemSets checkbox content.
Parameters
- isChecked System.Boolean = false
- Whether the checkbox is checked.
- label System.String = null
- Optional label for the checkbox.
- name System.String = null
- Optional name attribute.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem Content(Element content) #TablerDataGridItemBuilds rich inline content using the InlineText builder. Emits a single root <span> inside the datagrid-content wrapper.
Parameters
- rich System.Action{HtmlForgeX.InlineText}
public TablerDataGridItem Content(String content) #TablerDataGridItemSets simple text content for this data grid item.
Parameters
- content System.String
- The content text.
Returns
The TablerDataGridItem for method chaining.
Content(HtmlForgeX.Element content) #Sets element content for this data grid item.
Parameters
- content HtmlForgeX.Element
- The content element.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem FormControlContent(String inputType = "text", String placeholder = null, String value = null, String name = null) #TablerDataGridItemSets form control content (input field).
Parameters
- inputType System.String = "text"
- The input type (text, email, etc.).
- placeholder System.String = null
- Optional placeholder text.
- value System.String = null
- Optional default value.
- name System.String = null
- Optional name attribute.
Returns
The TablerDataGridItem for method chaining.
GetAuxiliaryChildren() #public TablerDataGridItem HtmlContent(String htmlContent) #TablerDataGridItemEditorBrowsable(2)Sets complex HTML content (for advanced scenarios).
Parameters
- htmlContent System.String
- The HTML content.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem IconContent(TablerIconType iconType, String text = null, Nullable<TablerColor> color = null) #TablerDataGridItemSets icon content with optional text.
Parameters
- iconType HtmlForgeX.TablerIconType
- The icon type.
- text System.String = null
- Optional text to display with the icon.
- color System.Nullable{HtmlForgeX.TablerColor} = null
- Optional icon color.
Returns
The TablerDataGridItem for method chaining.
RegisterLibraries() #Ensure tiny CSS helpers are injected when accent options or the enhanced content builder is used. Registration happens only when a Document exists.
public TablerDataGridItem Ribbon(String text, Nullable<TablerColor> color = null) #TablerDataGridItemAdds a small top ribbon chip to this row (works best on tinted/bordered panels).
Parameters
- text System.String
- color System.Nullable{HtmlForgeX.TablerColor} = null
public TablerDataGridItem StatusContent(String text, TablerColor color = Success) #TablerDataGridItemSets status content with a status span.
Parameters
- text System.String
- The status text.
- color HtmlForgeX.TablerColor = Success
- The status color.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem Title(Action<InlineText> rich) #TablerDataGridItemSets the title for this data grid item.
Parameters
- title System.String
- The title text.
Returns
The TablerDataGridItem for method chaining.
Title(HtmlForgeX.Element element) #Sets a custom element as the title (allows per-word coloring and richer content).
Parameters
- element HtmlForgeX.Element
Title(System.Action{HtmlForgeX.InlineText} rich) #Builds a rich inline title using the InlineText builder. Emits a single root <span> inside the datagrid-title wrapper.
Parameters
- rich System.Action{HtmlForgeX.InlineText}
public TablerDataGridItem TitleInfo(String text, String title = null, TablerPopoverPlacement placement = Top, TablerPopoverTrigger trigger = ClickOnly, TablerInfoPopoverVisualStyle visualStyle = Subtle) #TablerDataGridItemAdds a small info popover next to the title.
Parameters
- text System.String
- title System.String = null
- placement HtmlForgeX.TablerPopoverPlacement = Top
- trigger HtmlForgeX.TablerPopoverTrigger = ClickOnly
- visualStyle HtmlForgeX.TablerInfoPopoverVisualStyle = Subtle
public TablerDataGridItem TitleInfo(Action<TablerInfoPopover> configure) #TablerDataGridItemAdds a fully configured title info popover next to the title.
Parameters
- configure System.Action{HtmlForgeX.TablerInfoPopover}
public override String ToString() #StringGenerates the HTML output for this data grid item.
Returns
The HTML string representation.
public TablerDataGridItem WithContentAlignment(TablerDataGridContentAlignment alignment) #TablerDataGridItemSets the content alignment.
Parameters
- alignment HtmlForgeX.TablerDataGridContentAlignment
- The content alignment.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem WithCustomClasses(String cssClasses) #TablerDataGridItemEditorBrowsable(2)Adds custom CSS classes to the item container (uses Tabler utilities when possible).
Parameters
- cssClasses System.String
public TablerDataGridItem WithCustomSpacing(String customSpacing) #TablerDataGridItemEditorBrowsable(2)Sets custom spacing for this item.
Parameters
- customSpacing System.String
- Custom CSS spacing value.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem WithCustomStyle(String cssStyle) #TablerDataGridItemEditorBrowsable(2)Sets custom CSS styles for advanced customization.
Parameters
- cssStyle System.String
- Custom CSS style string.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem WithCustomTitleWidth(String customWidth) #TablerDataGridItemEditorBrowsable(2)Sets custom title width.
Parameters
- customWidth System.String
- Custom CSS width value.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem WithMargin(TablerMargin margin) #TablerDataGridItemSets margin using Tabler margin utilities.
Parameters
- margin HtmlForgeX.TablerMargin
- The margin value.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem WithPadding(TablerPadding padding) #TablerDataGridItemSets padding using Tabler padding utilities.
Parameters
- padding HtmlForgeX.TablerPadding
- The padding value.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem WithSpacing(TablerDataGridSpacing spacing) #TablerDataGridItemSets the spacing for this item using predefined values.
Parameters
- spacing HtmlForgeX.TablerDataGridSpacing
- The spacing value.
Returns
The TablerDataGridItem for method chaining.
public TablerDataGridItem WithTitleWidth(TablerDataGridTitleWidth width) #TablerDataGridItemSets the title width using predefined values.
Parameters
- width HtmlForgeX.TablerDataGridTitleWidth
- The title width.
Returns
The TablerDataGridItem for method chaining.
Inherited Methods
public TablerAccordion Accordion(Action<TablerAccordion> config) #TablerAccordionParameters
- config Action<TablerAccordion>
public TablerActionsAndNotesCard ActionsAndNotesCard(Action<TablerActionsAndNotesCard> config) #TablerActionsAndNotesCardParameters
- config Action<TablerActionsAndNotesCard>
public TablerActionSummaryCard ActionSummaryCard(Action<TablerActionSummaryCard> config) #TablerActionSummaryCardParameters
- config Action<TablerActionSummaryCard>
public TablerActivityFeedCard ActivityFeedCard(Action<TablerActivityFeedCard> config) #TablerActivityFeedCardParameters
- config Action<TablerActivityFeedCard>
public TablerActivityList ActivityList(Action<TablerActivityList> config) #TablerActivityListParameters
- config Action<TablerActivityList>
public override Element Add(Element element) #ElementParameters
- element Element
public TablerAgendaRail AgendaRail(Action<TablerAgendaRail> config) #TablerAgendaRailParameters
- config Action<TablerAgendaRail>
public TablerAlert Alert(String title, String message, TablerColor alertColor = Default, TablerAlertType alertType = Regular) #TablerAlertParameters
- title String
- message String
- alertColor TablerColor = Default
- alertType TablerAlertType = Regular
public TablerAlertList AlertList(Action<TablerAlertList> config) #TablerAlertListParameters
- config Action<TablerAlertList>
public TablerAnalyticsSummaryCard AnalyticsSummaryCard(Action<TablerAnalyticsSummaryCard> config) #TablerAnalyticsSummaryCardParameters
- config Action<TablerAnalyticsSummaryCard>
public ApexCharts ApexChart(Action<ApexCharts> config) #ApexChartsParameters
- config Action<ApexCharts>
public TablerApexChartCard ApexChartCard(Action<TablerApexChartCard> config) #TablerApexChartCardParameters
- config Action<TablerApexChartCard>
public TablerAuditLogCard AuditLogCard(Action<TablerAuditLogCard> config) #TablerAuditLogCardParameters
- config Action<TablerAuditLogCard>
public TablerAvailabilityHeatmap AvailabilityHeatmap(Action<TablerAvailabilityHeatmap> config) #TablerAvailabilityHeatmapParameters
- config Action<TablerAvailabilityHeatmap>
public TablerAvatar Avatar() #TablerAvatarParameters
- config Action<TablerAvatar>
public TablerAvatarGroup AvatarGroup(Action<TablerAvatarGroup> config) #TablerAvatarGroupParameters
- config Action<TablerAvatarGroup>
public TablerBadge Badge(String text, TablerBadgeColor color, TablerBadgeVisualStyle style, TablerBadgeSize size, Boolean pill = true, String href = null) #TablerBadgeParameters
- text String
- color TablerBadgeColor = null
public TablerBadgeSpan BadgeSpan(String text, TablerColor color = Blue) #TablerBadgeSpanParameters
- text String
- color TablerColor = Blue
public TablerBadgeStatus BadgeStatus(String text, TablerColor color) #TablerBadgeStatusParameters
- text String
- color TablerColor
public TablerBreakdownCard BreakdownCard(Action<TablerBreakdownCard> config) #TablerBreakdownCardParameters
- config Action<TablerBreakdownCard>
public TablerButton Button(String text, TablerButtonVariant variant = Primary) #TablerButtonParameters
- text String
- config Action<TablerButton> = Primary
public TablerCalendarWorkspaceCard CalendarWorkspaceCard(Action<TablerCalendarWorkspaceCard> config) #TablerCalendarWorkspaceCardParameters
- config Action<TablerCalendarWorkspaceCard>
public TablerCard Card(Int32 count, Action<TablerCard> config) #TablerCardParameters
- config Action<TablerCard>
public TablerCardBasic CardBasic(String title, String text) #TablerCardBasicParameters
- title String
- text String
public TablerCarousel Carousel(Action<TablerCarousel> config) #TablerCarouselParameters
- config Action<TablerCarousel>
public TablerCategoryBarChartCard CategoryBarChartCard(Action<TablerCategoryBarChartCard> config) #TablerCategoryBarChartCardParameters
- config Action<TablerCategoryBarChartCard>
public ChartJs ChartJs(Action<ChartJs> config) #ChartJsParameters
- config Action<ChartJs>
public TablerChipSet ChipSet(Action<TablerChipSet> config) #TablerChipSetParameters
- config Action<TablerChipSet>
public TablerCodeBlock CodeBlock(String code, PrismJsLanguage language = None, Action<TablerCodeBlockSettings> settings = null) #TablerCodeBlockParameters
- config Action<TablerCodeBlock>
public TablerCollectionCards CollectionCards(Action<TablerCollectionCards> config) #TablerCollectionCardsParameters
- config Action<TablerCollectionCards>
public TablerCollectionTable CollectionTable(Action<TablerCollectionTable> config) #TablerCollectionTableParameters
- config Action<TablerCollectionTable>
public TablerCollectionToolbar CollectionToolbar(Action<TablerCollectionToolbar> config) #TablerCollectionToolbarParameters
- config Action<TablerCollectionToolbar>
public TablerColumn Column(TablerColumnNumber number, Action<TablerColumn> config) #TablerColumnParameters
- config Action<TablerColumn>
public TablerComparisonList ComparisonList(Action<TablerComparisonList> config) #TablerComparisonListParameters
- config Action<TablerComparisonList>
public TablerSection ContentSection(Action<TablerSection> config) #TablerSectionParameters
- config Action<TablerSection>
public TablerControlBar ControlBar(Action<TablerControlBar> config) #TablerControlBarParameters
- config Action<TablerControlBar>
public TablerCookieBanner CookieBanner(Action<TablerCookieBanner> config) #TablerCookieBannerParameters
- config Action<TablerCookieBanner>
public TablerCountdown Countdown(Action<TablerCountdown> config = null) #TablerCountdownParameters
- config Action<TablerCountdown> = null
public TablerCountUp CountUp(Action<TablerCountUp> config) #TablerCountUpParameters
- config Action<TablerCountUp>
public TablerDashboardFrame DashboardFrame(Action<TablerDashboardFrame> config) #TablerDashboardFrameParameters
- config Action<TablerDashboardFrame>
public TablerRow DashboardGrid(TablerDashboardGridPreset preset, params Action<TablerColumn>[] items) #TablerRowParameters
- items Action<TablerColumn>[]
public TablerDashboardShowcaseFrame DashboardShowcaseFrame(Action<TablerDashboardShowcaseFrame> config) #TablerDashboardShowcaseFrameEditorBrowsable(2)Parameters
- config Action<TablerDashboardShowcaseFrame>
public TablerDashboardSurfaceModelPreview DashboardSurfaceModelPreview(Action<TablerDashboardSurfaceModelPreview> config) #TablerDashboardSurfaceModelPreviewParameters
- config Action<TablerDashboardSurfaceModelPreview>
public TablerDataGrid DataGrid(Action<TablerDataGrid> config) #TablerDataGridParameters
- config Action<TablerDataGrid>
public TablerDataGridCard DataGridCard(Action<TablerDataGridCard> config) #TablerDataGridCardParameters
- config Action<TablerDataGridCard>
public TablerDataTableCard DataTableCard(Action<TablerDataTableCard> config) #TablerDataTableCardParameters
- config Action<TablerDataTableCard>
public TablerDatedEventList DatedEventList(Action<TablerDatedEventList> config) #TablerDatedEventListParameters
- config Action<TablerDatedEventList>
public VisNetwork DiagramNetwork(Action<VisNetwork> config) #VisNetworkParameters
- config Action<VisNetwork>
public TablerDistributionCard DistributionCard(Action<TablerDistributionCard> config) #TablerDistributionCardParameters
- config Action<TablerDistributionCard>
public HtmlTag Div(Action<HtmlTag> config) #HtmlTagParameters
- config Action<HtmlTag>
public TablerDrilldownWorkspace DrilldownWorkspace(Action<TablerDrilldownWorkspace> config) #TablerDrilldownWorkspaceParameters
- config Action<TablerDrilldownWorkspace>
public TablerEmptyState EmptyState(Action<TablerEmptyState> config) #TablerEmptyStateParameters
- config Action<TablerEmptyState>
public TablerEmptyStateCard EmptyStateCard(Action<TablerEmptyStateCard> config) #TablerEmptyStateCardParameters
- config Action<TablerEmptyStateCard>
public TablerEntityCollection EntityCollection(Action<TablerEntityCollection> config) #TablerEntityCollectionParameters
- config Action<TablerEntityCollection>
public TablerEntityList EntityList(Action<TablerEntityList> config) #TablerEntityListParameters
- config Action<TablerEntityList>
public override Boolean Equals(Object obj) #BooleanParameters
- obj Object
public FancyTree FancyTree(Action<FancyTree> config) #FancyTreeParameters
- config Action<FancyTree>
public TablerFileSecureMessageForm FileSecureMessageForm(Action<TablerFileSecureMessageForm> config) #TablerFileSecureMessageFormEditorBrowsable(2)Parameters
- config Action<TablerFileSecureMessageForm>
public TablerFileServicePortalShell FileServicePortal(Action<TablerFileServicePortalShell> config) #TablerFileServicePortalShellEditorBrowsable(2)Parameters
- config Action<TablerFileServicePortalShell>
public Element FileServices(Action<TablerFileServicesBuilder> config) #ElementParameters
- config Action<TablerFileServicesBuilder>
public TablerFileServiceSendForm FileServiceSendForm(Action<TablerFileServiceSendForm> config) #TablerFileServiceSendFormEditorBrowsable(2)Parameters
- config Action<TablerFileServiceSendForm>
public TablerFileServiceTransferMap FileServiceTransferMap(Action<TablerFileServiceTransferMap> config) #TablerFileServiceTransferMapEditorBrowsable(2)Parameters
- config Action<TablerFileServiceTransferMap>
public TablerFileTransferList FileTransferList(Action<TablerFileTransferList> config) #TablerFileTransferListEditorBrowsable(2)Parameters
- config Action<TablerFileTransferList>
public TablerFlagIcon Flag(Country country) #TablerFlagIconParameters
- iso2 String
public TablerFlagList Flags(Action<TablerFlagList> config) #TablerFlagListParameters
- config Action<TablerFlagList>
public TablerForm Form(Action<TablerForm> config) #TablerFormParameters
- config Action<TablerForm>
public FullCalendar FullCalendar(Action<FullCalendar> config) #FullCalendarParameters
- config Action<FullCalendar>
public TablerGaugeCard GaugeCard(Action<TablerGaugeCard> config) #TablerGaugeCardParameters
- config Action<TablerGaugeCard>
public TablerGeoSummaryCard GeoSummaryCard(Action<TablerGeoSummaryCard> config) #TablerGeoSummaryCardParameters
- config Action<TablerGeoSummaryCard>
public HeaderLevel HeaderLevel(HeaderLevelTag level, String text) #HeaderLevelParameters
- level HeaderLevelTag
- text String
public TablerHeroCard HeroCard(Action<TablerHeroCard> config) #TablerHeroCardParameters
- config Action<TablerHeroCard>
public TablerHighlightCard HighlightCard(Action<TablerHighlightCard> config) #TablerHighlightCardParameters
- config Action<TablerHighlightCard>
public TablerIconElement Icon(TablerIconType icon, Action<TablerIconElement> config) #TablerIconElementParameters
- icon FontAwesomeSolid
- config Action<FontAwesomeIcon> = null
public TablerIconFont IconFont(TablerIconType icon) #TablerIconFontParameters
- icon String
public TablerIncidentTimelineCard IncidentTimelineCard(Action<TablerIncidentTimelineCard> config) #TablerIncidentTimelineCardParameters
- config Action<TablerIncidentTimelineCard>
public TablerInlineGroup InlineGroup(Action<TablerInlineGroup> config) #TablerInlineGroupParameters
- config Action<TablerInlineGroup>
public TablerInsightBanner InsightBanner(Action<TablerInsightBanner> config) #TablerInsightBannerParameters
- config Action<TablerInsightBanner>
public TablerInsightSummaryCard InsightSummaryCard(Action<TablerInsightSummaryCard> config) #TablerInsightSummaryCardParameters
- config Action<TablerInsightSummaryCard>
public TablerCodeBlock JsonBlock(Object value, Action<TablerCodeBlockSettings> settings = null, JsonSerializerOptions options = null) #TablerCodeBlockParameters
- json String
- settings Action<TablerCodeBlockSettings> = null
public TablerLightboxGallery LightboxGallery(Action<TablerLightboxGallery> config) #TablerLightboxGalleryParameters
- config Action<TablerLightboxGallery>
public TablerLineComparisonCard LineComparisonCard(Action<TablerLineComparisonCard> config) #TablerLineComparisonCardParameters
- config Action<TablerLineComparisonCard>
public TablerButton LinkButton(String text, String href, TablerButtonVariant variant = Primary) #TablerButtonParameters
- text String
- href String
- variant TablerButtonVariant = Primary
public TablerListCard ListCard(Action<TablerListCard> config) #TablerListCardParameters
- config Action<TablerListCard>
public TablerListGroup ListGroup(Action<TablerListGroup> config) #TablerListGroupParameters
- config Action<TablerListGroup>
public TablerLogs Logs(List<String> code, RGBColor backgroundColor, RGBColor textColor) #TablerLogsParameters
- code String
- theme TablerLogsTheme = Dark
- backgroundClass String = null
- textClass String = null
public TablerMapSummaryCard MapSummaryCard(Action<TablerMapSummaryCard> config) #TablerMapSummaryCardParameters
- config Action<TablerMapSummaryCard>
public TablerMetricCard MetricCard(Action<TablerMetricCard> config) #TablerMetricCardParameters
- config Action<TablerMetricCard>
public TablerMetricList MetricList(Action<TablerMetricList> config) #TablerMetricListParameters
- config Action<TablerMetricList>
public TablerModal Modal(Action<TablerModal> config) #TablerModalParameters
- config Action<TablerModal>
public MonitoringDashboard MonitoringDashboardSurface(Action<MonitoringDashboard> configure) #MonitoringDashboardParameters
- configure Action<MonitoringDashboard>
public TablerMultiSeriesBarList MultiSeriesBarList(Action<TablerMultiSeriesBarList> config) #TablerMultiSeriesBarListParameters
- config Action<TablerMultiSeriesBarList>
public TablerNarrativeCard NarrativeCard(Action<TablerNarrativeCard> config) #TablerNarrativeCardParameters
- config Action<TablerNarrativeCard>
public TablerNarrativeSummaryCard NarrativeSummaryCard(Action<TablerNarrativeSummaryCard> config) #TablerNarrativeSummaryCardParameters
- config Action<TablerNarrativeSummaryCard>
public TablerOperationalList OperationalList(Action<TablerOperationalList> config) #TablerOperationalListParameters
- config Action<TablerOperationalList>
public TablerOperationalWorkspace OperationalWorkspace(Action<TablerOperationalWorkspace> config) #TablerOperationalWorkspaceParameters
- config Action<TablerOperationalWorkspace>
public TablerPageHeader PageHeader(Action<TablerPageHeader> config) #TablerPageHeaderParameters
- config Action<TablerPageHeader>
public TablerPeopleReviewCard PeopleReviewCard(Action<TablerPeopleReviewCard> config) #TablerPeopleReviewCardParameters
- config Action<TablerPeopleReviewCard>
public TablerPlaceholder Placeholder(Action<TablerPlaceholder> config) #TablerPlaceholderParameters
- config Action<TablerPlaceholder>
public TablerPlaceholderCard PlaceholderCard(Action<TablerPlaceholderCard> config) #TablerPlaceholderCardParameters
- config Action<TablerPlaceholderCard>
public TablerPlaceholderContainer Placeholders(Action<TablerPlaceholderContainer> config) #TablerPlaceholderContainerParameters
- config Action<TablerPlaceholderContainer>
public TablerCodeBlock PowerShellBlock(String code, Action<TablerCodeBlockSettings> settings = null) #TablerCodeBlockParameters
- code String
- settings Action<TablerCodeBlockSettings> = null
public TablerPresenceListCard PresenceListCard(Action<TablerPresenceListCard> config) #TablerPresenceListCardParameters
- config Action<TablerPresenceListCard>
public TablerPretextMasonry PretextMasonry(Action<TablerPretextMasonry> config) #TablerPretextMasonryParameters
- config Action<TablerPretextMasonry>
public TablerProgressBar ProgressBar(TablerProgressBarType type, Int32 percentage, Nullable<TablerColor> tablerBackground = null) #TablerProgressBarParameters
- config Action<TablerProgressBar>
public TablerProgressListCard ProgressListCard(Action<TablerProgressListCard> config) #TablerProgressListCardParameters
- config Action<TablerProgressListCard>
public EasyQRCodeElement QRCode(String text) #EasyQRCodeElementParameters
- text String
public QuillEditor QuillEditor(Action<QuillEditor> config = null) #QuillEditorParameters
- config Action<QuillEditor> = null
public TablerRankedList RankedList(Action<TablerRankedList> config) #TablerRankedListParameters
- config Action<TablerRankedList>
public TablerRecordInspectorCard RecordInspectorCard(Action<TablerRecordInspectorCard> config) #TablerRecordInspectorCardParameters
- config Action<TablerRecordInspectorCard>
public TablerReviewListCard ReviewListCard(Action<TablerReviewListCard> config) #TablerReviewListCardParameters
- config Action<TablerReviewListCard>
public TablerRosterList RosterList(Action<TablerRosterList> config) #TablerRosterListParameters
- config Action<TablerRosterList>
public TablerRow Row(Action<TablerRow> config) #TablerRowParameters
- config Action<TablerRow>
public TablerScheduleSummaryCard ScheduleSummaryCard(Action<TablerScheduleSummaryCard> config) #TablerScheduleSummaryCardParameters
- config Action<TablerScheduleSummaryCard>
public ScrollingText ScrollingText(Action<ScrollingText> config) #ScrollingTextParameters
- config Action<ScrollingText>
public TablerScrollSpy ScrollSpy(Action<TablerScrollSpy> config) #TablerScrollSpyParameters
- config Action<TablerScrollSpy>
public TablerServiceConfigActionGrid ServiceConfigActionGrid(Action<TablerServiceConfigActionGrid> config) #TablerServiceConfigActionGridParameters
- config Action<TablerServiceConfigActionGrid>
public TablerServiceConfigChangeSummary ServiceConfigChangeSummary(Action<TablerServiceConfigChangeSummary> config) #TablerServiceConfigChangeSummaryParameters
- config Action<TablerServiceConfigChangeSummary>
public TablerServiceConfigChecklist ServiceConfigChecklist(Action<TablerServiceConfigChecklist> config) #TablerServiceConfigChecklistParameters
- config Action<TablerServiceConfigChecklist>
public TablerServiceConfigChoiceGroup ServiceConfigChoiceGroup(Action<TablerServiceConfigChoiceGroup> config) #TablerServiceConfigChoiceGroupParameters
- config Action<TablerServiceConfigChoiceGroup>
public TablerServiceConfigEventLog ServiceConfigEventLog(Action<TablerServiceConfigEventLog> config) #TablerServiceConfigEventLogParameters
- config Action<TablerServiceConfigEventLog>
public TablerServiceConfigFlow ServiceConfigFlow(Action<TablerServiceConfigFlow> config) #TablerServiceConfigFlowParameters
- config Action<TablerServiceConfigFlow>
public TablerServiceConfigForm ServiceConfigForm(Action<TablerServiceConfigForm> config) #TablerServiceConfigFormParameters
- config Action<TablerServiceConfigForm>
public TablerServiceConfigJsonPanel ServiceConfigJsonPanel(Action<TablerServiceConfigJsonPanel> config) #TablerServiceConfigJsonPanelParameters
- config Action<TablerServiceConfigJsonPanel>
public TablerServiceConfigLiveList ServiceConfigLiveList(Action<TablerServiceConfigLiveList> config) #TablerServiceConfigLiveListParameters
- config Action<TablerServiceConfigLiveList>
public TablerServiceConfigLiveTable ServiceConfigLiveTable(Action<TablerServiceConfigLiveTable> config) #TablerServiceConfigLiveTableParameters
- config Action<TablerServiceConfigLiveTable>
public TablerServiceConfigPanel ServiceConfigPanel(Action<TablerServiceConfigPanel> config) #TablerServiceConfigPanelParameters
- config Action<TablerServiceConfigPanel>
public TablerServiceConfigProbeCatalog ServiceConfigProbeCatalog(Action<TablerServiceConfigProbeCatalog> config) #TablerServiceConfigProbeCatalogParameters
- config Action<TablerServiceConfigProbeCatalog>
public TablerServiceConfigRepeater ServiceConfigRepeater(Action<TablerServiceConfigRepeater> config) #TablerServiceConfigRepeaterParameters
- config Action<TablerServiceConfigRepeater>
public TablerServiceConfigSectionExplorer ServiceConfigSectionExplorer(Action<TablerServiceConfigSectionExplorer> config) #TablerServiceConfigSectionExplorerParameters
- config Action<TablerServiceConfigSectionExplorer>
public TablerServiceConfigSettingGrid ServiceConfigSettingGrid(Action<TablerServiceConfigSettingGrid> config) #TablerServiceConfigSettingGridParameters
- config Action<TablerServiceConfigSettingGrid>
public TablerServiceConfigSettingPanelGrid ServiceConfigSettingPanelGrid(Action<TablerServiceConfigSettingPanelGrid> config) #TablerServiceConfigSettingPanelGridParameters
- config Action<TablerServiceConfigSettingPanelGrid>
public TablerServiceConfigStudio ServiceConfigStudio(Action<TablerServiceConfigStudio> config) #TablerServiceConfigStudioParameters
- config Action<TablerServiceConfigStudio>
public TablerServiceConfigTopologyMap ServiceConfigTopologyMap(Action<TablerServiceConfigTopologyMap> config) #TablerServiceConfigTopologyMapParameters
- config Action<TablerServiceConfigTopologyMap>
public SmartTab SmartTab(Action<SmartTab> config) #SmartTabParameters
- config Action<SmartTab>
public SmartWizard SmartWizard(Action<SmartWizard> config) #SmartWizardParameters
- config Action<SmartWizard>
public TablerSocialTileCard SocialTileCard(Action<TablerSocialTileCard> config) #TablerSocialTileCardParameters
- config Action<TablerSocialTileCard>
public Span Span(String content = "") #SpanParameters
- content String = ""
public TablerSparkline Sparkline(Action<TablerSparkline> config) #TablerSparklineParameters
- config Action<TablerSparkline>
public TablerSpinner Spinner(Action<TablerSpinner> config) #TablerSpinnerParameters
- config Action<TablerSpinner>
public TablerCodeBlock SqlBlock(String sql, Action<TablerCodeBlockSettings> settings = null) #TablerCodeBlockParameters
- sql String
- settings Action<TablerCodeBlockSettings> = null
public TablerStatTileCard StatTileCard(Action<TablerStatTileCard> config) #TablerStatTileCardParameters
- config Action<TablerStatTileCard>
public TablerStatusIndicator StatusIndicator(Action<TablerStatusIndicator> config) #TablerStatusIndicatorParameters
- config Action<TablerStatusIndicator>
public TablerStatusMatrix StatusMatrix(Action<TablerStatusMatrix> config) #TablerStatusMatrixParameters
- config Action<TablerStatusMatrix>
public TablerStatusPipelineCard StatusPipelineCard(Action<TablerStatusPipelineCard> config) #TablerStatusPipelineCardParameters
- config Action<TablerStatusPipelineCard>
public TablerStatusStrip StatusStrip(Action<TablerStatusStrip> config) #TablerStatusStripParameters
- config Action<TablerStatusStrip>
public TablerSummaryStrip SummaryStrip(Action<TablerSummaryStrip> config) #TablerSummaryStripParameters
- config Action<TablerSummaryStrip>
public Table Table(Object objects, TableType tableType) #TableParameters
- objects IEnumerable<Object>
- tableType TableType
public TablerInput TablerInput(String name, Action<TablerInput> config = null) #TablerInputParameters
- name String
- config Action<TablerInput> = null
public TablerProgressBar TablerProgress(Action<TablerProgressBar> config) #TablerProgressBarParameters
- config Action<TablerProgressBar>
public TablerSelect TablerSelect(String name, Action<TablerSelect> config = null) #TablerSelectParameters
- name String
- config Action<TablerSelect> = null
public TablerSteps TablerSteps(Action<TablerSteps> config) #TablerStepsParameters
- config Action<TablerSteps>
public TablerTextarea TablerTextarea(String name, Action<TablerTextarea> config = null) #TablerTextareaParameters
- name String
- config Action<TablerTextarea> = null
public TablerTableSummaryCard TableSummaryCard(Action<TablerTableSummaryCard> config) #TablerTableSummaryCardParameters
- config Action<TablerTableSummaryCard>
public TablerTabs Tabs(Action<TablerTabs> config) #TablerTabsParameters
- config Action<TablerTabs>
public TablerTags Tags(Action<TablerTags> config) #TablerTagsParameters
- config Action<TablerTags>
public TablerTargetMetricCard TargetMetricCard(Action<TablerTargetMetricCard> config) #TablerTargetMetricCardParameters
- config Action<TablerTargetMetricCard>
public TablerTaskOverviewCard TaskOverviewCard(Action<TablerTaskOverviewCard> config) #TablerTaskOverviewCardParameters
- config Action<TablerTaskOverviewCard>
public TablerTaskList Tasks(Action<TablerTaskList> config) #TablerTaskListParameters
- config Action<TablerTaskList>
public TablerText Text() #TablerTextParameters
- content String
- color RGBColor = null
- fontSize String = null
public TablerTimeline Timeline(Action<TablerTimeline> config) #TablerTimelineParameters
- config Action<TablerTimeline>
public TablerTimelineInspectorRail TimelineInspectorRail(Action<TablerTimelineInspectorRail> config) #TablerTimelineInspectorRailParameters
- config Action<TablerTimelineInspectorRail>
public TablerTimelinePlannerCard TimelinePlannerCard(Action<TablerTimelinePlannerCard> config) #TablerTimelinePlannerCardParameters
- config Action<TablerTimelinePlannerCard>
public TablerTimelineSummaryCard TimelineSummaryCard(Action<TablerTimelineSummaryCard> config) #TablerTimelineSummaryCardParameters
- config Action<TablerTimelineSummaryCard>
public TablerToast Toast(Action<TablerToast> config) #TablerToastParameters
- title String
- message String
- type TablerToastType = Default
public TablerTrackingSummaryCard TrackingSummaryCard(Action<TablerTrackingSummaryCard> config) #TablerTrackingSummaryCardParameters
- config Action<TablerTrackingSummaryCard>
public TablerVectorMapCard VectorMapCard(Action<TablerVectorMapCard> config) #TablerVectorMapCardParameters
- config Action<TablerVectorMapCard>
public TablerWorkflowStepsCard WorkflowStepsCard(Action<TablerWorkflowStepsCard> config) #TablerWorkflowStepsCardParameters
- config Action<TablerWorkflowStepsCard>
public TablerWorkflowSummaryCard WorkflowSummaryCard(Action<TablerWorkflowSummaryCard> config) #TablerWorkflowSummaryCardParameters
- config Action<TablerWorkflowSummaryCard>
public TablerWorkloadList WorkloadList(Action<TablerWorkloadList> config) #TablerWorkloadListParameters
- config Action<TablerWorkloadList>
public TablerRow WorkspaceSplit(TablerWorkspaceSplitPreset preset, Action<TablerColumn> primary, Action<TablerColumn> support) #TablerRowParameters
- primary Action<TablerColumn>
- support Action<TablerColumn>
public TablerWorkspaceTabsCard WorkspaceTabsCard(Action<TablerWorkspaceTabsCard> config) #TablerWorkspaceTabsCardParameters
- config Action<TablerWorkspaceTabsCard>
public TablerCodeBlock XmlBlock(String xml, Action<TablerCodeBlockSettings> settings = null) #TablerCodeBlockParameters
- xml String
- settings Action<TablerCodeBlockSettings> = null