Interface IGridBoundColumn
The interface that describes a column bound to a data field in the grid component.
Inherited Members
Namespace: Telerik.Blazor.Components.Grid
Assembly: Telerik.Blazor.dll
Syntax
public interface IGridBoundColumn : IBoundColumn, IColumn
Properties
Groupable
Whether the column is groupable.
Declaration
bool Groupable { get; set; }
Property Value
System.Boolean
|
GroupFooterTemplate
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
RenderFragment<GridGroupHeaderTemplateContext> GroupHeaderTemplate { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment<GridGroupHeaderTemplateContext>
|