hii,
Suppose I am having a Table in grid where i am having total 5 columns. When I am pressing TabKey, It is going sequentially from 1 to 5 and then it is going to another row. For every row I want to skip a column. I tried with tabIndex as -1 and 99999 for particular column. I tried with eventlistener with if-else condition also, But not working for me.
https:/c/stackblitz.com/edit/react-7srkcq-wpog86?file=app/main.jsx
In this given link the table is given I want to skip "Units" column from the table.
Currrently is is going like this ID>ProductName>FirstOrderedOn>Units>Discontinued> NextRow, I need to skip the highlighted column.
When I will press the tab key it should be start from ID>ProductName>FirstOrderedOn>Discontinued> NextRow
Thankyou