Interface
IGridBoundColumn

The interface that describes a column bound to a data field in the grid component.

Definition

Namespace:Telerik.Blazor.Components.Grid

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public interface IGridBoundColumn : IColumn

Inherited Members IColumn.TitleIColumn.HeaderClassIColumn.VisibleIColumn.ReorderableIColumn.ResizableIColumn.WidthIColumn.MinResizableWidthIColumn.MaxResizableWidthIColumn.LockedIColumn.Id

Properties

GroupFooterTemplate

Represents the column group footer cell template, where you can access and print out column aggregate values. You can render custom components and apply logic in it.

Declaration

cs-api-definition
RenderFragment<GridGroupTemplateContext> GroupFooterTemplate { get; set; }

Property Value

RenderFragment<GridGroupTemplateContext>

GroupHeaderTemplate

Represents the column group header template, where you can access and print out column aggregate values. The template is used when the Grid is grouped by the column. If no template is specified, the name of the Field and the current group value is displayed. You can render custom components and apply logic in it.

Declaration

cs-api-definition
RenderFragment<GridGroupHeaderTemplateContext> GroupHeaderTemplate { get; set; }

Property Value

RenderFragment<GridGroupHeaderTemplateContext>

Groupable

Whether the column is groupable.

Declaration

cs-api-definition
bool Groupable { get; set; }

Property Value

bool