Check documentation for the latest version of dhtmlxSuite onSelectStateChanged DHTMLX Docs

onSelectStateChanged

fires immediately when the selection state has been changed

void onSelectStateChanged(string|number id);
idstring|numberthe id or the list of ids of selected row(s)

Available only in PRO Edition

Example

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

Back to top