Check documentation for the latest version of dhtmlxSuite onEnter DHTMLX Docs

onEnter

fires immediately after the Enter key was pressed

void onEnter(string|number id,number ind);
idstring|numberthe id of a row
indnumberthe index of a cell

Available only in PRO Edition

Example

grid.attachEvent("onEnter", function(id,ind){
    // your code here
});

Back to top