Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
can you show what #{emailNotification.previewContent} returns -- either by showing the method or just giving an example String? – Dave Maple May 9 '11 at 19:30
Can someone please help me with this?This is really urgent :( – cma3982 May 9 '11 at 19:30
@Dave ... it returns the html code for email for preview...so basically it has a tables/trs/td laid out and a couple of images..well formatted html code – cma3982 May 9 '11 at 19:31
ignore the <div>#{emailNotification.previewContent}</div> . I had just added that to see wht is returned – cma3982 May 9 '11 at 19:32
so if you change the rich:modalPanel to a regualar h:panelGroup everything renders fine? – Dave Maple May 9 '11 at 19:33
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.