React TreeList - Focused Row
The focused row feature allows you to display master-detail relationships and improve navigation through records.
To allow users to focus rows, set the focusedRowEnabled property to true
.
Use the following mouse and keyboard commands to control the focused row:
Command | Action |
---|---|
Mouse Click | Focuses a row. |
↑ / ↓ | Focuses the next/previous row. |
← / → | Focuses the cell to the left/right. |
Esc | Removes highlighting from the focused cell. |
You can use the focusedRowKey or focusedRowIndex property to specify the initially focused row. The grid is scrolled down to it. If you also specify the focusedColumnIndex property, a specific cell in this row is focused.
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import TreeList from 'devextreme-react/tree-list';
- export default function App() {
- return (
- <TreeList ...
- focusedRowEnabled={true}
- focusedRowIndex={0} {/* focus the first row */}
- focusedColumnIndex={0}> {/* focus the first cell */}
- </TreeList>
- );
- }
The TreeList raises events before and after a row or cell is focused. Use the onFocusedRowChanging/onFocusedRowChanged and onFocusedCellChanging/onFocusedCellChanged functions to handle these events. You can perform custom actions in these functions, for instance, customize keyboard navigation, as shown in the onFocusedCellChanging example.
You can implement the onFocusedRowChanged event handler to get the focused row key.
If you have technical questions, please create a support ticket in the DevExpress Support Center.