Greetings JQWidgets Team,
I have some questions about the ‘checkbox’ selection mode in the jqxGrid.
-Can the chebox for selecting/unselecting all the records in the grid be disabled or at least set to hidden??
-Why is the unselect-all action bound to the ‘rowselect’ event?? I suposse it should be bound to the ‘rowunselect’ event.
You can see this behaviour in code like this:
$(“#jqxgrid”).on(‘rowselect’, function(event){
var sel=$(‘#jqxgrid’).jqxGrid(‘getselectedrowindexes’);
alert(sel.length);
});
The alert triggers when checking any row in the grid and when checking the select-all checkbox, but also when unchecking the select-all checkbox. Is this normal or maybe a bug???
I’m using JQuery 1.9.x and jQwidgets 3.5
Thanks in advance.