The component that configures the Grid selection settings.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class GridSelectionSettings : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender
Inheritance: objectComponentBaseGridSelectionSettings
Implements:
Inherited Members
Constructors
C#
public GridSelectionSettings()
Methods
C#
public override Task SetParametersAsync(ParameterView parameters)
Overrides:
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; }