Custom cell editor focus and tab

Hi,
I’m creating a custom cell editor that contains 2 input controls: an and a .
In the grid the Tab permits to move between cells (automatically displaying the cell editor), but in my scenario I would like to “intercept” the Tab when the focus is on the to move to the control.
May you provide some info about this? I mean, may you tell me if you provide already some javascript methods to manage grid navigation?

Best regards, Andrea Pirola

You can try to use “onTab” event docs.dhtmlx.com/doku.php?id=dhtm … vent_ontab

Also you can catch “onfocus” event from input and move focus on the select box. But it impossible to find out if input is focused because of mouse click or because of tabbing.