New to Telerik UI for ASP.NET MVCStart a free 30-day trial

Keyboard Navigation

By default, the keyboard navigation of the PropertyGrid component is disabled.

Enable the PropertyGrid keyboard navigation functionality through the Navigatable() method. When the option is set to true, you can initially select a cell and then move within the PropertyGrid by using the Arrow keys. The navigation occurs at a cell level. To select the row of the currently focused cell, press Space.

The following example demonstrates how to enable the component keyboard navigation.

Razor
    @(Html.Kendo().PropertyGrid<PropertyViewModel>()
        .Name("propertyGrid")
        /* Other configuration. */
        .Navigatable(true)
    )

For a complete example, refer to the demo on using the keyboard navigation of the PropertyGrid.

The PropertyGrid supports the following keyboard shortcuts:

  • Actions Applied to the Data Table
SHORTCUTDESCRIPTION
Access key + wFocuses the component.
Arrow KeysNavigate over the cells.
SpaceSelects the row holding the currently highlighted cell.
Enter or F2Puts the cell in edit mode.
EscCancels the edit or, if an element inside a cell is focused, returns the focus to the table.
Ctrl + HomeFocuses the first focusable element inside the body.
Ctrl + EndFocuses the last focusable element inside the body.
Alt + Right ArrowExpands the currently selected item, either a group or a composite item.
Alt + Left ArrowCollapses the currently selected item, either a group or a composite item.
HomeFocuses the first focusable cell in the row.
EndFocuses the last focusable cell in the row.
  • Actions Applied to the ToolBar
SHORTCUTDESCRIPTION
Access key + wFocuses the component.
F10Focuses the ToolBar.
Right ArrowFocuses the next focusable item.
Left ArrowFocuses the previous focusable item.
EnterSelects the focused button, or enters the inner template navigation if the template contains focusable items, or opens the CommandOverflow menu when an overflow anchor is focused.
SpaceSelects the focused button.
HomeFocuses the first focusable item.
EndFocuses the last focusable item.
EscIf the inner template navigation is activated, moves the focus back to the PropertyGrid ToolBar item.

See Also

In this article
See Also
Not finding the help you need?
Contact Support