I am using full version of phpjqgrid. Is there a way that I can configure case insensitive search?
By default, contains and begins with search is case insensitive.
If you can share grid code, it would help in analysis.
I am evaluating demo mode… same problem, not understood how to use ignorecase thorugh php_grid. Please guide asap.
You can switch column settings to use begins with search instead of contains.
beginswith is case insensitive using LOWER() function.
$col["searchoptions"]["sopt"] = array("bw");
For oracle, your need to replace default 'contains' search with 'beginswith'.
Search following line in jqgrid_dist.php, and edit
stringResult: true,searchOnEnter : false, defaultSearch:'cn'
to
stringResult: true,searchOnEnter : false, defaultSearch:'bw'