Dynamic html append - InnerHTML like implementation for Adf components.
Hi,
I need to display html code on the jsff page which is set from backing bean.
I need to display some dynamic html code on jsff page. I am setting the html code in an attribute of requestMap which needs to be added and displayed on jsff page.
For example,
BackingBean
requestMap.put ("DetailText", "<p>This is sample text for description</p> <img src=\"test.png\">");
JSFF Page
<af:panelGroupLayout layout="vertical">
<af:outputText value ="#{requestScope.DetailText}"/>
</af:panelGroupLayout>
Above code is displaying hardcoded value / plain html code.
I need to do something like innerHTML style in adf components.
Is there any way to implement this? appreciating you help !!