2 ways you can display html code on a page in ADF
<af:outputText id="ot1" escape="false" value="html code value goes here.."/>
or
<af:richTextEditor label="htmlContent" id="rte1" columns="50" readOnly="true"
value="html code value goes here.."
simple="true" editMode="source" rows="25"/>
<af:outputText id="ot1" escape="false" value="html code value goes here.."/>
or
<af:richTextEditor label="htmlContent" id="rte1" columns="50" readOnly="true"
value="html code value goes here.."
simple="true" editMode="source" rows="25"/>
Another way to add HTML code is to use the outputFormatted component.
ReplyDelete<af:outputFormatted value="html code value goes here..." id="of1"/>
However, this tag only supports a limited set of HTML tags.
Thank you ^_^
ReplyDelete