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

The Select All tool for the Grid toolbar. Renders a checkbox and label that allows selecting/deselecting all rows.

Definition

Constructors

C#
public GridToolBarSelectAllTool()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

Properties

Additional child content to render within the tool.

C#
[Parameter]
public RenderFragment ChildContent { get; set; }

Controls the scope of the select all operation when the checkbox is clicked. Use Current to select only visible items on the current page or filtered dataset, or All to select all items in the entire data source. Default is Current.

C#
[Parameter]
public GridSelectAllMode SelectAllMode { get; set; }

The text to display next to the checkbox.

C#
[Parameter]
public string Text { get; set; }