Hi Abu,
I'm working with MSSQL and so far the grid works excellent when I show data with no col["link"] format, if I do and the text have special characters then doesn't show the text, like Name: "PÉREZ" or "ACUÑA"
I already try the tag <html lang="es"> and <meta UTF-8, Latin…> and no results.
I was trying col["link"] because I've been unable to get it run with "on_select" event, if I do then the entire document is blank, no errors… nothing
If I just comment the line where "set_events" is at then I have data
Would you please help me?
Thanks
Oscar
Following this issue, I already run a REPLACE() function but doesn't work, let me show an example:
Patient name: "MORALES ACUÑA JUAN"
SELECT patient.oid, patient.completeName, REPLACE(patient.completeName, 'Ñ', 'N') as Nombre FROM Patient
Still shows the origina name "MORALES ACUÑA JUAN", only works in SQL Server
Thanks in advance
Oscar
For link fix, change one line in jqgrid_dist.php in lib/inc.
Search this line:
$row[$col_name] = htmlentities($row[$col_name],ENT_QUOTES, "UTF-8");
Replace with:
$row[$col_name] = htmlentities(utf8_encode($row[$col_name]),ENT_QUOTES, "UTF-8");
We added utf8_encode function.
—
For set_events issue, i reviewed your code, and you should call $g object instead of $grid.