I have a requirement where I need to display the HTML content returned by a webservice in a modalpanel for which I am using <rich:modalPanel> as below
<rich:modalPanel id="confirmPanel" autosized="false" keepVisualState="false" width="800" height="800" style="overflow : auto;">
<f:facet name="header">
<h:outputText value="Preview" />
</f:facet>
<h:panelGroup layout="block" styleClass="scrolls"> <center><rich:spacer height="20" />
<h:panelGrid columns="1">
<h:outputText value="#{emailNotification.previewContent}" escape="false"/>
<div>#{emailNotification.previewContent}</div>
</h:panelGrid> <rich:spacer height="30" /> <h:panelGrid columns="2">
<a4j:commandButton value="Close" onclick="Richfaces.hideModalPanel('confirmPanel');" />
</h:panelGrid></center>
</h:panelGroup>
</rich:modalPanel>
The email prview content contains 2 images (img tags) that are to be rendered from a server. However these imags are not getting displayed on the modal. When I run the URL on a browser the image is returned correctly.