Hi!
Here is my problem : in my jqxGrid I sometimes needs to show values like this “<html>”. I can’t pass such a value to my grid, or it will be considered like a html tag, and user will not see it on screen. To fix that, I HTML encode it on server side, and then pass it to the client in a json like “<html>”.
But, if the user exports the grid in CSV, he will get a “<html>” instead of “<html>”.
How can I fix that? How do the jqWidgets handle those problem? Should I html encode the value only on client side? If yes, how to you make sure the json is always fine?
Regards