Hello,
I can now confirm that there is a bug that still exists after one fix made for this thread: http://www.trirand.com/blog/?page_id=393/bugs/bug-in-jqfilter-when-using-multiplegroup/
The bug is that ignoreCase does not work when combined with “multiGroup” complex search.
The bug can be fixed by adding a line of code at line 1474:
if (group.rules !== undefined) { //line 1470
if(s>0) { //1471
var result = query.select(); //1472
query = $.jgrid.from( result); //1473
if (ts.p.ignoreCase) { query = query.ignoreCase(); } //add this code here, and fix will be made
}
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top