Datatable + select break navigation keyboard?

Hi

As you can see, we can not use keyboard keys (up/down) after a row has been selected using the datatable API.

Little bug ? Is there a work around ?

https://snippet.webix.com/8mfckqwt

thanks

try to make table focused after the operation

webix.UIManager.setFocus('datatable');

https://snippet.webix.com/4cj5tazn

1 Like

Hello @franck34,

The matter is that select row by the button, focus is transferred from the table to the row. And row doesn’t has onKeyPress.
So you need to setFocus() correctly after select: Code Snippet

1 Like