Replies: 1 comment
-
Hey @mrmwink, <DataGridCell focusMode="group">
<Input tabIndex={0} />
</DataGridCell>
import { useArrowNavigationGroup } from '@fluentui/react-components';
const gridNavigationProps = useArrowNavigationGroup({ axis: 'grid' });
<DataGrid {...gridNavigationProps}>
{/* DataGrid content */}
</DataGrid> If this is not helping, feel free to provide reproducible enviromnent (e.g. Stackblitz link). |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
So I have a basic DataGrid where I am rendering the cell with a Input component, I have set TabIndex in the Input in the hope that I would be able to simply tab between cells in the row and then for it to move onto the next row etc, but I am not getting any tabbing, if I select a cell and edit the value when I tab out it tabs off of the DataGrid component completely, not the next cell as I would expect?
Am I missing something!?
Thanks
Mike
Beta Was this translation helpful? Give feedback.
All reactions