Hi All,
I have an issue on a Traditional application whereby when a user edits the contents of a text field the word manager's is displayed as manager's
How do I fix this? Do I need to wrap the text which is being passed to the field upon clicking edit in a decode function of some kind?
Thanks
You can take HtmlRenderer from manage dependencies.
Hope this helps
Hi @JayPea,
You can you use DecodeHTML
In this you need to send your text as the input and KeepSpecialChar as false and you will get the result without these special characters.
Hope this helpsThanks
Thanks @Neha Rathore , can you tell me where to find this function? Which dependency is it located in? I only have encode functions in my built in functions and nothing for decode?
Thanks @Neha Rathore, so this is a server action. I was hoping to just be able to wrap the input parameter on the block which pulls in the text for editing in some decode function. I guess I can't use it in that way.