I am trying to populate name text field with already saved value.
Now the value can contain apostrophe. But text fields is converting apostrophe to "' ;
".
Eg. sdsd'sds
==> sdsd' ;sds
escape
property for textfield is not working.
What should I do?
This issue got resolved with use of ESAPI.encoder().decodeForHTML() function. The values getting rendered properly after I decode the values before using in s:textfields.
Thanks.