Check documentation for the latest version of dhtmlxSuite onRowSelect DHTMLX Docs

onRowSelect

fires immediately after a row in the grid has been clicked

void onRowSelect(string|number id,number ind);
idstring|numberthe id of the clicked row
indnumberthe index of the clicked cell

Available only in PRO Edition

Example

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

Back to top