New to Telerik UI for BlazorStart a free 30-day trial

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:

C#
public interface IGridBoundColumn : IColumn

Derived Classes: GridColumn

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

Properties

Whether the column is groupable.

C#
bool Groupable { get; set; }

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.

C#
RenderFragment<GridGroupTemplateContext> GroupFooterTemplate { get; set; }

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.

C#
RenderFragment<GridGroupHeaderTemplateContext> GroupHeaderTemplate { get; set; }