Hi!
I’m adding checkboxes to the grid and selecting the entire row like this:
leftGrid.bind('cellendedit', function (event) {
if (event.args.value) {
$("#jqxgrid").jqxGrid('selectrow', event.args.rowindex);
selectedItems++;
}
else {
$("#jqxgrid").jqxGrid('unselectrow', event.args.rowindex);
selectedItems--;
}
setBtnState();
});
However, when I call .jqxGrid(‘clearselection’), it clears the selected rows, but not the checkboxes.
Is there another method to clear both the selection & the select box check?
Thanks,
Shaun