Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
80
jsp:include in a tabItem
posted

Hi,

I'm trying to call another jspf page with jsp:include from one of the tab items in a tab view.

I get the tabview, but not the include file data, why?

 

main jsp: 

<

 

ig:tabItem value="General Information" selected="false">

   <jsp:include page="next.jspf"/>

</ig:tabItem>

    

jspf page:

  <f:subview id="next">

 <body>

 

<hx:scriptCollector id="scriptCollector1">   <h:panelGrid styleClass="panelGrid" id="grid1" columns="3">

 

    <hx:graphicImageEx styleClass="graphicImageEx" id="imageEx1" value="/theme/images/Documents_ico_4.ico" width="15" height="15">

      

     </hx:graphicImageEx>

     <hx:outputLinkEx value=someDoc.doc styleClass="outputLinkEx" id="linkEx1">

        <h:outputText id="text1" styleClass="outputText" value="Updates"></h:outputText>

     </hx:outputLinkEx>

    <h:outputText styleClass="outputText" id="text2" value="for the NPI Process"></h:outputText>

   </h:panelGrid>

</hx:scriptCollector>

</body>

</f:subview>

 

 

 

Parents
No Data
Reply
  • 1765
    Verified Answer
    posted

    Hi anat,

    Also, make sure to include <jsp:include> within <f:verbatim> tag. Below is the code snippet.

    Thank you!

     <ig:tabView>

       <ig:tabItem id="Info1" value="Tabpage">

         <f:verbatim> 

            <jsp:include page="test.jsp"></jsp:include> 

         </f:verbatim> 

       </ig:tabItem>

    </

     

    ig:tabView>

     

Children