When filtering data on top line of a grid I get an error since one field of the records returned is not utf8 compatible (it contains a "รจ").
I had a similar problem on dropdown results which was fixed by modifying the function get_dropdown_values($sql) (line 602 of file jqgrid_dist.php was replaced by $str[] = $rs["k"].":".utf8_encode($rs["v"]);).
I guess I should add utf8_encode to the function which filters data, can you please point me out the correct one?
Txs
1 Answers
Your Answer