You need to sign in to do that
Don't have an account?

Rich text area is not displaying correctly in visual force page
I have used escape attribute for richTextArea field still content of my Visualforce page is showing me RTF data on UI like '<span><p> this is desc. </p> </Span>' instead of 'this is desc.'
Below is the VF,
<apex:pageBlockSection columns="1" >
<apex:repeat value="{!PPPInfo}" var="v">
<apex:outputtext escape="false"> {!v.Status__c} </apex:outputtext>
</apex:repeat>
</apex:pageBlockSection>
Is it because the value of richTextArea field is coming from Child of Child Record?
Please Help!!
I would use the outputfield tag instead - I've always found that handled the HTML correctly:
For the sake of completeness, I think the reason that your outputext isn't working is because you aren't supplying the field as a value to the component, rather you are nesting the field inside the component which I wouldn't expect to have the same effect. If you have to use the outputtext component, try:
All Answers
I would use the outputfield tag instead - I've always found that handled the HTML correctly:
For the sake of completeness, I think the reason that your outputext isn't working is because you aren't supplying the field as a value to the component, rather you are nesting the field inside the component which I wouldn't expect to have the same effect. If you have to use the outputtext component, try:
Thanks so much Bob!! It works perfectly.. :)