Hi , Does the Datatable support keyDown events, I am able to associate a keyPress event handler but can’t find anything related to keyDown in the documentation.
Nope, there is no default handler for onKeyDown
You can use raw html events though
webix.event( $$("dtable").$view, "keydown", function(ev){
/*some code*/
});
This one will attach native onkeydown handler for the html element of datatable
Hi , maxim .
Thanks. My requirement for keydown event was due to the varying levelof keyCode support offered by different browsers for the keyPress event.
I will try out this approach.
Thanks