[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-1884) ui:include in PDF doesn't work in IE

Natalia Ponomareva (JIRA) jira-events at lists.jboss.org
Thu Aug 30 04:02:18 EDT 2007


ui:include in PDF doesn't work in IE
------------------------------------

                 Key: JBSEAM-1884
                 URL: http://jira.jboss.com/jira/browse/JBSEAM-1884
             Project: JBoss Seam
          Issue Type: Bug
    Affects Versions: 1.2.1.GA
         Environment: jboss-4.0.5.GA
            Reporter: Natalia Ponomareva
             Fix For: 2.0.0.GA


<ui:include> tag doesn't work in pdf while opening pdf in IE (6 and 7.0). Thus 

<p:document xmlns:f="http://java.sun.com/jsf/core"
            xmlns:ui="http://java.sun.com/jsf/facelets"
            xmlns:s="http://jboss.com/products/seam/taglib"
            xmlns:p="http://jboss.com/products/seam/pdf"
            xmlns:h="http://java.sun.com/jsf/html">

    <h:panelGroup rendered="#{!pdfBean.defaultStyle}" >
        <ui:include src="/pdf/defaultPDF.xhtml"/>
    </h:panelGroup>


    <h:panelGroup rendered="#{pdfBean.defaultStyle}" >
        <ui:include src="/pdf/anotherStylePDF.xhtml"/>
    </h:panelGroup>


</p:document>

Will not be rendered in IE (nothing will be shown).However, Firefox displays that correctly. 
but this will work

<f:view xmlns:f="http://java.sun.com/jsf/core"
            xmlns:ui="http://java.sun.com/jsf/facelets"
            xmlns:h="http://java.sun.com/jsf/html">

    <h:panelGroup rendered="#{!pdfBean.defaultStyle}">
        <ui:include src="/pdf/defaultPDF.xhtml"/>
    </h:panelGroup>

    <h:panelGroup rendered="#{pdfBean.defaultStyle}" >
        <ui:include src="/pdf/anotherStylePDF.xhtml"/>
    </h:panelGroup>
</f:view>
in both Firefox and IE (anotherStylePDF.xhtml and defaultPDF.xhtml are pdf pages as well).
I am not sure whether it is bug or feature.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list