Check documentation for the latest version of dhtmlxSuite onCellMarked DHTMLX Docs

onCellMarked

fires immediately after a cell has been selected

void onCellMarked(string|number rid,string|number ind);
ridstring|numberthe id of the selected row
indstring|numberthe index of the selected cell

Available only in PRO Edition

Example

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

Details

the event works only with "Markers" extension

Back to top