Hi,
I think I found a bug in jqxgrid.js (and jqx-all.js by extension). In the source code on line 8391 there is the line:
mid = parseInt((min + max) / 2)
The problem is the mid variable is never declared. This doesn’t seem to be a problem in many browsers, but it is a problem in at least IE8. I think the declaration can be included with the one for min on line 8384 (var min = 0, mid;) or the one for max on line 8389 (var max = collection.length, mid;).
This is in v3.7.1 and goes back to at least v3.2.1.
Just thought I’d pass it along.
Thanks,
Andrew