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

The component that configures the groupable options.

Definition

Constructors

C#
public GridGroupableSettings()

Methods

C#
protected override Task OnInitializedAsync()
Returns:

Task

Overrides: ComponentBase.OnInitializedAsync()

C#
public override Task SetParametersAsync(ParameterView parameters)
Parameters:parametersParameterViewReturns:

Task

Overrides: ComponentBase.SetParametersAsync(ParameterView)

Properties

Allows users to reorder grouped columns by dragging the group indicator chips in the group panel. Enable this to let users change grouping order interactively.

C#
[Parameter]
public bool Reorderable { get; set; }

Enables sorting through the group chip in the Group Panel. When set to true, a sort arrow appears in each group chip and users can click the chip to toggle the group's sort direction (ascending/descending). Applies when the Groupable property of TelerikGrid<TItem> is true. The default value is false.

C#
[Parameter]
public bool Sortable { get; set; }

Keeps the group footer row pinned at the bottom of the scroll container while its group's data rows are visible. When the user scrolls past a group footer, a duplicate of that footer is rendered in a fixed overlay at the bottom of the Grid's scrollable area. Applies when the Grid has a Height set and data is grouped. The default value is false.

C#
[Parameter]
public bool StickyFooters { get; set; }

Keeps the group header row pinned at the top of the scroll container while its group's data rows are visible. When the user scrolls past a group header, a duplicate of that header is rendered in a fixed overlay at the top of the Grid's scrollable area. Applies when the Grid has a Height set and data is grouped. The default value is false.

C#
[Parameter]
public bool StickyHeaders { get; set; }