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

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:

C#
public enum GridKeyboardCommand

Fields

Cancel editing and revert changes. Default shortcut: Escape.

C#
CancelEdit = 18

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

C#
DeleteRow = 22

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

C#
EnterEditMode = 17

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

C#
ExitCheckBox = 31

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

C#
ExitCommandButton = 34

Extend selection down. Default: Shift+ArrowDown.

C#
ExtendSelectionDown = 14

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

C#
ExtendSelectionLeft = 15

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

C#
ExtendSelectionRight = 16

Extend selection up. Default: Shift+ArrowUp.

C#
ExtendSelectionUp = 13

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

C#
FocusCheckBox = 32

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

C#
FocusCommandButton = 33

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

C#
FocusNextEditableCell = 19

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

C#
FocusPreviousEditableCell = 20

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

C#
GroupColumn = 26

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

C#
NavigateDown = 1

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

C#
NavigateLeft = 2

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

C#
NavigatePageDown = 7

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

C#
NavigatePageUp = 6

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

C#
NavigateRight = 3

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

C#
NavigateToGridEnd = 9

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

C#
NavigateToGridStart = 8

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

C#
NavigateToRowEnd = 5

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

C#
NavigateToRowStart = 4

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

C#
NavigateUp = 0

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

C#
OpenColumnMenu = 27

Range selection. Default: Shift+Space.

C#
RangeSelect = 12

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

C#
ReorderColumnLeft = 28

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

C#
ReorderColumnRight = 29

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

C#
SaveEditCell = 21

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

C#
Select = 10

Toggle sort on column header. Default shortcut: Enter.

C#
SortColumn = 25

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

C#
ToggleCheckBox = 30

Expand/collapse detail template. Default: Enter.

C#
ToggleDetailRow = 24

Expand/collapse group row. Default: Enter.

C#
ToggleGroupRow = 23

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

C#
ToggleSelection = 11