InterfaceIGridBoundColumn
Interface
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
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
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