I am using input tag(<input type=‘checkbox’) to create the checkboxes in the dhtmlx rows beside the text content. can anyone tell me how I can uncheck all these checkboxes at a time ?
I have tried using checkAll(false)method, but it is not working. currently i am using forEachRow method and checking all the rows. But i want to uncheck all these checboxes at a time, not one by one.
Built in api will work only with “ch” column in grid ( which can be used instead of html checkboxes ) if you need to operate with all native checkboxes in grid, you can use something like
var checks = grid.objBox.getElementsByTagName("input");
for (var i=0; i<checks; i++) checks[i].checked = true;