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

I use rich:tabPanel component of RichFaces lib.

<rich:tabPanel>
    <rich:tab label="Tab1">
            <ui:include src="res.xhtml" />
    </rich:tab>
</rich:tabPanel>

ui:include doesn't work here.

Does anybody faced similar issue?

Thanks.

share|improve this question

2 Answers

up vote 1 down vote accepted

It should work. This worked for me:

<rich:tabPanel>
   <rich:tab label="Tab">
    <ui:include src="footer.xhtml" />
   </rich:tab>
</rich:tabPanel>

where footer.xhtml:

<h:panelGrid xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      columns="2">
  <h:outputText value="#{a4j.projectName}" style="font-style: italic; font-size: x-small;"/>
  <h:outputText value="#{a4j.version}" style="font-style: italic; font-size: x-small;"/>
</h:panelGrid>
share|improve this answer
yes it works, thank you for help – sergionni Feb 24 '11 at 8:33

Me too as following, even in dynamic include:

<rich:tab id="#{tab.id}" name="#{tab.id}" onenter="enterTab('#{tab.id}');">
   <f:subview id="#{tab.id}-subView" rendered="#{tab.id eq desktopTabController.activeTab}">
      <ui:include src="#{tab.xhtmlFile}" />
   </f:subview>
</rich:tab>

It would be useful, if you post the error returned by the IDE.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.