I can’t seem to get the grid to properly display accented characters. The same data displays fine when pulled from the database into my HTML or PHP, but when shown in the grid has a weird output. How can I fix this?
1 Answers
Hello,
By default latest build expects data to be in UTF8. If your database have different charset, you need to tell grid by:
$g->charset = “latin1”;
Where $g = new jqgrid()
Your Answer