Check documentation for the latest version of dhtmlxSuite onCheckbox DHTMLX Docs

onCheckbox

the event is deprecated, use the onCheck event instead; fires after the state was changed

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

Available only in PRO Edition

Example

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

Back to top