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

The component that configures the Grid selection settings.

Definition

Constructors

C#
public GridSelectionSettings()

Methods

C#
protected override Task OnInitializedAsync()
Returns:

Task

Overrides: ComponentBase.OnInitializedAsync()

C#
protected override Task OnParametersSetAsync()
Returns:

Task

Overrides: ComponentBase.OnParametersSetAsync()

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

Task

Overrides: ComponentBase.SetParametersAsync(ParameterView)

Properties

Enables selection by dragging mouse over cells or rows. When enabled, users can select multiple items by clicking and dragging.

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

Determines whether users can select entire rows or individual cells. Use Row to allow selecting complete rows for bulk operations, or Cell to enable selecting individual cells for precise data manipulation. Cell selection is not compatible with incell editing mode (Incell).

C#
[Parameter]
public GridSelectionType SelectionType { get; set; }