Hi,
In a grid, i read datas from a php page which produces json.
If i want to user letters with accents, i must transform the string with php function htmlentities. eg the letter é becomes & e a c u t e ;
It is well displayed in the grid. But i want to use a filter box. And if i type é on my keyboard, the grid shows no rows.
If i want to see all the words which contains é (like été, société, …) I have to type & e a c …
Which is not very ergonomic…
So my question :
In my grid cells, i have words with letters with accents. They are coded as html strings (& something ; ). How use the filter box to retrive these word when typing é, ç, à, è, ê, …
Thanks