Enum
GridKeyboardScope

Defines the different zones (contexts) within the Grid where keyboard shortcuts can be customized. Each zone represents a specific type of cell or area that may have its own set of keyboard commands.

Definition

Namespace:Telerik.Blazor

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public enum GridKeyboardScope

Fields

CheckBoxCell

Checkbox cells in a checkbox column that allow row selection via checkbox interaction.

Declaration

cs-api-definition
CheckBoxCell = 6

Field Value

GridKeyboardScope

CommandCell

Command cells that contain command buttons (Edit, Delete, Update, Cancel, etc.).

Declaration

cs-api-definition
CommandCell = 7

Field Value

GridKeyboardScope

Common

Shortcuts that apply to all cell types unless overridden by a specific zone. Use this to define navigation, selection, and other commands that should work consistently everywhere in the Grid. Zone-specific shortcuts take priority over Common shortcuts.

Declaration

cs-api-definition
Common = 0

Field Value

GridKeyboardScope

DataCell

Regular data cells that display content in the grid body.

Declaration

cs-api-definition
DataCell = 1

Field Value

GridKeyboardScope

DetailCell

Detail cells that contain the detail template content when detail templates are enabled.

Declaration

cs-api-definition
DetailCell = 4

Field Value

GridKeyboardScope

EditCell

Editable cells when the grid row is in edit mode (inline or incell editing).

Declaration

cs-api-definition
EditCell = 5

Field Value

GridKeyboardScope

GroupHeaderCell

Group header cells that appear when grouping is enabled and allow expanding/collapsing groups.

Declaration

cs-api-definition
GroupHeaderCell = 3

Field Value

GridKeyboardScope

HeaderCell

Header cells at the top of columns that typically support sorting, grouping, and column menu access.

Declaration

cs-api-definition
HeaderCell = 2

Field Value

GridKeyboardScope