Hi Abu,
I have a grid with an array set as the data source. When I try to use the inline search to filter the grid, it is Case Sensitive and I would like it to be case insensitive.
I had set the column up as:
$col["name"] = 'column_name';
$col["dbname"] = 'LOWER(column_name)';
This was to try to search the column in lower case, but it did not work. Could you please advise on how to get this inline search working Case Insensitive for a grid with an array as the data source?
Thanks
2 Answers
For case insensitive searching with array based grid, you need to set:
$opt["ignoreCase"] = true;
…
$g->set_options($opt);
Your Answer