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

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:

C#
public enum GridKeyboardScope

Fields

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

C#
CheckBoxCell = 6

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

C#
CommandCell = 7

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.

C#
Common = 0

Regular data cells that display content in the grid body.

C#
DataCell = 1

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

C#
DetailCell = 4

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

C#
EditCell = 5

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

C#
GroupHeaderCell = 3

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

C#
HeaderCell = 2