Check documentation for the latest version of dhtmlxSuite onCheck DHTMLX Docs

onCheck

fires after the state of a checkbox has been changed

void onCheck(string|number rId,number cInd,boolean state);
rIdstring|numberthe id of a row
cIndnumberthe index of a cell
statebooleanthe state of the checkbox/radiobutton

Available only in PRO Edition

Example

grid.attachEvent("onCheck", function(rId,cInd,state){
    // your code here
});

Back to top