fires when a checkbox is checked or unchecked in the datatable item
row | number | id of the row |
column | string | id of the column |
state | number | new checkbox state |
datatable.attachEvent("onCheck", function(rwo, column, state){
//code
));
Checkbox state is 0 or 1 by default, if other is not stated by checkValue and uncheckValue properies of the column:
{id:"ch", template:"{common.checkbox()}", checkValue:"On", uncheckValue:"Off"}