Check documentation for the latest version of dhtmlxSuite onTab DHTMLX Docs

onTab

fires during the tabulation in the grid, blockable

void onTab(boolean mode);
modebooleanthe direction of tabulation (true for straight tab, false for backward tab)

Available only in PRO Edition

Example

grid.attachEvent("onTab", function(mode){
    //your code here
});

Back to top