Hello,
I am disabling some rows using this code:
1 2 3 4 5 6 7 |
rowattr: function (rd) { if (rd.Errori>0) { return { "class": "ui-state-disabled ui-jqgrid-disablePointerEvents" }; } }, |
but then when I click the “selectAll” checkbox all the checkbox in each rows gets clicked (and selected). Is there a way to avoid selecting disabled rows?
For example see here:
https://jsfiddle.net/lorife/e53d9hxb/
for some reason it does not have the disabled color but it’s doing what i’m talking about
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top