Check documentation for the latest version of dhtmlxSuite onCellUnMarked DHTMLX Docs

onCellUnMarked

fires immediately after a cell is unselected

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

Available only in PRO Edition

Example

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

Details

the event works only with "Markers" extension

Back to top