TikChiku
TikChiku

Reputation: 413

ag-Gird:setting tabindex to Columns

Is it possible to change the tabindexs according to the change of columns order??

I am using FloatingFilter of ag-Grid.When the order of columns was changed, tabindex won't follow, but still remain the initial order.

Upvotes: 1

Views: 3821

Answers (1)

Alexander Zbinden
Alexander Zbinden

Reputation: 2566

Taking control of you navigation by providing your own tabToNextCell function should do the trick:

tabToNextCell

Provide a callback tabToNextCell if you want to override the tab key navigation.

https://www.ag-grid.com/javascript-grid-keyboard-navigation/#gsc.tab=0

Upvotes: 1

Related Questions