Enum
GridKeyboardCommand

Defines the available keyboard commands that can be customized in the Grid. Each command corresponds to a specific action that can be triggered via keyboard shortcuts. Use these values as keys in the zone-specific dictionaries within the CustomKeyboardShortcuts parameter.

Definition

Namespace:Telerik.Blazor

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public enum GridKeyboardCommand

Fields

CancelEdit

Cancel editing and revert changes. Default shortcut: Escape.

Declaration

cs-api-definition
CancelEdit = 18

Field Value

GridKeyboardCommand

DeleteRow

Delete the current row. Default shortcuts: Delete, Backspace. Only works when the Grid is editable.

Declaration

cs-api-definition
DeleteRow = 22

Field Value

GridKeyboardCommand

EnterEditMode

Enter edit mode for the current cell or row. Default shortcuts: Enter (incell only), F2 (any mode).

Declaration

cs-api-definition
EnterEditMode = 17

Field Value

GridKeyboardCommand

ExitCheckBox

Return focus from the checkbox input back to the cell. Default shortcut: Escape.

Declaration

cs-api-definition
ExitCheckBox = 31

Field Value

GridKeyboardCommand

ExitCommandButton

Return focus from the command button back to the command cell. Default shortcut: Escape.

Declaration

cs-api-definition
ExitCommandButton = 34

Field Value

GridKeyboardCommand

ExtendSelectionDown

Extend selection down. Default: Shift+ArrowDown.

Declaration

cs-api-definition
ExtendSelectionDown = 14

Field Value

GridKeyboardCommand

ExtendSelectionLeft

Extend selection left (cell selection). Default: Shift+ArrowLeft.

Declaration

cs-api-definition
ExtendSelectionLeft = 15

Field Value

GridKeyboardCommand

ExtendSelectionRight

Extend selection right (cell selection). Default: Shift+ArrowRight.

Declaration

cs-api-definition
ExtendSelectionRight = 16

Field Value

GridKeyboardCommand

ExtendSelectionUp

Extend selection up. Default: Shift+ArrowUp.

Declaration

cs-api-definition
ExtendSelectionUp = 13

Field Value

GridKeyboardCommand

FocusCheckBox

Move focus into the checkbox input element. Default shortcut: Enter.

Declaration

cs-api-definition
FocusCheckBox = 32

Field Value

GridKeyboardCommand

FocusCommandButton

Move focus to the first command button in the cell or trigger the focused button. Default shortcut: Enter.

Declaration

cs-api-definition
FocusCommandButton = 33

Field Value

GridKeyboardCommand

FocusNextEditableCell

Move focus to the next editable cell. Default shortcut: Tab.

Declaration

cs-api-definition
FocusNextEditableCell = 19

Field Value

GridKeyboardCommand

FocusPreviousEditableCell

Move focus to the previous editable cell. Default shortcut: Shift+Tab.

Declaration

cs-api-definition
FocusPreviousEditableCell = 20

Field Value

GridKeyboardCommand

GroupColumn

Group or ungroup a column. Default shortcut: Ctrl+Space.

Declaration

cs-api-definition
GroupColumn = 26

Field Value

GridKeyboardCommand

NavigateDown

Navigate to the cell below the current cell. Default shortcut: ArrowDown.

Declaration

cs-api-definition
NavigateDown = 1

Field Value

GridKeyboardCommand

NavigateLeft

Navigate to the cell on the left of the current cell. Default shortcut: ArrowLeft.

Declaration

cs-api-definition
NavigateLeft = 2

Field Value

GridKeyboardCommand

NavigatePageDown

Navigate one page down in the grid (scroll down by one page). Default shortcut: PageDown.

Declaration

cs-api-definition
NavigatePageDown = 7

Field Value

GridKeyboardCommand

NavigatePageUp

Navigate one page up in the grid (scroll up by one page). Default shortcut: PageUp.

Declaration

cs-api-definition
NavigatePageUp = 6

Field Value

GridKeyboardCommand

NavigateRight

Navigate to the cell on the right of the current cell. Default shortcut: ArrowRight.

Declaration

cs-api-definition
NavigateRight = 3

Field Value

GridKeyboardCommand

NavigateToGridEnd

Navigate to the last actionable cell in the entire grid (last cell in last row). Default shortcut: Ctrl+End.

Declaration

cs-api-definition
NavigateToGridEnd = 9

Field Value

GridKeyboardCommand

NavigateToGridStart

Navigate to the first actionable cell in the entire grid (first cell in first row). Default shortcut: Ctrl+Home.

Declaration

cs-api-definition
NavigateToGridStart = 8

Field Value

GridKeyboardCommand

NavigateToRowEnd

Navigate to the last cell in the current row. Default shortcut: End.

Declaration

cs-api-definition
NavigateToRowEnd = 5

Field Value

GridKeyboardCommand

NavigateToRowStart

Navigate to the first cell in the current row. Default shortcut: Home.

Declaration

cs-api-definition
NavigateToRowStart = 4

Field Value

GridKeyboardCommand

NavigateUp

Navigate to the cell above the current cell. Default shortcut: ArrowUp.

Declaration

cs-api-definition
NavigateUp = 0

Field Value

GridKeyboardCommand

OpenColumnMenu

Open the column menu or filter menu for the focused header. Default shortcut: Alt+ArrowDown.

Declaration

cs-api-definition
OpenColumnMenu = 27

Field Value

GridKeyboardCommand

RangeSelect

Range selection. Default: Shift+Space.

Declaration

cs-api-definition
RangeSelect = 12

Field Value

GridKeyboardCommand

ReorderColumnLeft

Reorder the focused column to the left by swapping it with the column on its left. Default shortcut: Ctrl+ArrowLeft.

Declaration

cs-api-definition
ReorderColumnLeft = 28

Field Value

GridKeyboardCommand

ReorderColumnRight

Reorder the focused column to the right by swapping it with the column on its right. Default shortcut: Ctrl+ArrowRight.

Declaration

cs-api-definition
ReorderColumnRight = 29

Field Value

GridKeyboardCommand

SaveEditCell

Save the changes made in the edit cell and exit edit mode. Default shortcut: Enter.

Declaration

cs-api-definition
SaveEditCell = 21

Field Value

GridKeyboardCommand

Select

Select/deselect the current row/cell. Default: Space.

Declaration

cs-api-definition
Select = 10

Field Value

GridKeyboardCommand

SortColumn

Toggle sort on column header. Default shortcut: Enter.

Declaration

cs-api-definition
SortColumn = 25

Field Value

GridKeyboardCommand

ToggleCheckBox

Toggle the checkbox on/off in a checkbox column cell. Default shortcut: Space.

Declaration

cs-api-definition
ToggleCheckBox = 30

Field Value

GridKeyboardCommand

ToggleDetailRow

Expand/collapse detail template. Default: Enter.

Declaration

cs-api-definition
ToggleDetailRow = 24

Field Value

GridKeyboardCommand

ToggleGroupRow

Expand/collapse group row. Default: Enter.

Declaration

cs-api-definition
ToggleGroupRow = 23

Field Value

GridKeyboardCommand

ToggleSelection

Toggle selection of the current row. Default: Ctrl+Space.

Declaration

cs-api-definition
ToggleSelection = 11

Field Value

GridKeyboardCommand