Tab key navigation for Datatable

Hi,

I am using webix datatable within a third party form. On pressing tab key, focus moves between form controls instead of cells within the datatable. Instead of tab and shift Tab keys, is it possible to use some other keys like arrow keys for editor too?

Thanks

Ashok

You can use addHotKey to register global hot key handlers

http://webix.com/snippet/m/f47a1cf2

Hi Maksim,

Thanks. Works, however, every time the window containing the datatable opens, the navigation key jump one extra row. Is there a way to clear the added hotkeys on widow close event?

thanks
Ashok

Unfortunately it is not possible for now.
You can reorganize the code, so handler will be added only once, and will not be related to window opening logic.

Ok. Thanks