Skip to main content

End-User Capabilities: Navigating Through Rows and Cells

  • 3 minutes to read

Move Focus Between Rows and Cards

To move focus between cells and rows use the ARROW, TAB, HOME, END, PAGE UP and PAGE DOWN keys. Note that the ARROW, HOME and END keys are used for navigation between rows/cards only when the focused cell is not being edited. Othewise, these keys affect focus movement within the currently edited cell.

Do one of the following to focus the next cell:

  • Press TAB.
  • In Grid Views, press RIGHT ARROW. In Card Views and Layout Views, press DOWN ARROW.
  • If a cell editor is active, pressing RIGHT ARROW moves focus to the next cell if the caret is positioned at the end of the current cell’s text or if the cell’s text is selected in its entirety.
  • If the last row cell is focused, the selection moves to the first cell of the next row. Disable the GridOptionsNavigation.AutoMoveRowFocus property to keep the selection on the current row.
  • Press ENTER when a row cell is focused. If the GridOptionsNavigation.EnterMoveNextColumn setting is enabled, the focus moves to the next row cell. If the newly focused cell is editable, a cell editor is activated automatically.

Do one of the following to focus the previous cell.

  • Press SHIFT+TAB.
  • In Grid Views, press LEFT ARROW. In Card Views and Layout Views, press UP ARROW.
  • If a cell editor is active, pressing LEFT ARROW moves focus to the previous cell if the caret is positioned at the beginning of the current cell’s text or if the cell’s text is selected in its entirety.
  • If the first row cell is focused, the selection moves to the last cell of the previous row. Disable the GridOptionsNavigation.AutoMoveRowFocus property to keep the selection on the current row.

Tip

Use the OptionsColumn.TabStop property to specify whether column cells can be focused via the TAB key. This setting is supported in the GridView, BandedGridView, AdvBandedGridView classes, and their descendants.

To focus the first cell within the current row in Grid Views, press HOME.

To focus the last cell within the current row in Grid Views, press END.

To focus the first row/card:

  • press CTRL+HOME in Grid Views;
  • press HOME or CTRL+Home in Card Views and Layout Views.

To focus the last row/card:

  • press CTRL+END in Grid Views;
  • press END or CTRL+END in Card Views and Layout Views.

Do one of the following to move focus to the Auto Filter Row displayed at the top of a Grid View.

  • Click this row.
  • If a top data row is focused, press CTRL+UP ARROW.

Move Focus Away From the Grid Control

Press CTRL+TAB.

See Also