Hello,
currently I'm testing php grid free version. I have one simple question.
I' ve found similar problem one user had and I wanted to know if solution he got in response will work in free version.
That's the solution I'm talking about
You can use custom formatter for column. For e.g.
$col["formatter"] = "function(cellval,options,rowdata){ return jQuery.jgrid.htmlDecode(cellval); }";
$col["unformat"] = "function(cellval,options,rowdata){ return jQuery.jgrid.htmlEncode(cellval); }";
formatter function will be called on display, and unformat on editing display mode.
I'm completely new in php so I just want to know if there is point to try make it work before upgrading to full version.
Thanks in advance for any answers.
1 Answers
Your Answer