You need to sign in to do that
Don't have an account?
Rich text area field get renders with its HTML
Hello,
I want to display richtext area field value to be rendered without the HTML tags but i am not able to. I have tried with both of the below lines.
<apex:outputtext value="{!objWorkFeedback.Feedback}" escape="false"/>
<apex:outputfield value="{!objWorkFeedback.Feedback}"/>
I am not sure what the reason could be? Any suggestions or workarounds ?
Thanks is advance
I want to display richtext area field value to be rendered without the HTML tags but i am not able to. I have tried with both of the below lines.
<apex:outputtext value="{!objWorkFeedback.Feedback}" escape="false"/>
<apex:outputfield value="{!objWorkFeedback.Feedback}"/>
I am not sure what the reason could be? Any suggestions or workarounds ?
Thanks is advance
Check if the reference to the field name is correct : {!objWorkFeedback.Feedback} and try to use a more recent API version for the visualforce page
See working sample code below referring to a rich text field on Account:
All Answers
Check if the reference to the field name is correct : {!objWorkFeedback.Feedback} and try to use a more recent API version for the visualforce page
See working sample code below referring to a rich text field on Account: