Hi All,

I'm looking for examples of the panelTabbedPane feature where there is a
wizard flow within one of the tabs.  I currently don't know how to proceed
in order to have an included JSP in one tab submit its form and have the
response (a different) JSP render within the tab in the place of the first
JSP.  I got my basic layout from the standard tomahawk example:

(tabbed.jsp)
<f:view>
<t:panelTabbedPane bgcolor="#FFFFCC" serverSideTabSwitch="true">
    <f:subview id="tab1" >
        <jsp:include page="campaign2.jsp"/>
    </f:subview>
    <t:panelTab id="tab2" label="Tab 2" rendered="true">
        </t:panelTab>
    <t:panelTab id="tab3" label="Tab 3" rendered="true">
    </t:panelTab>
</t:panelTabbedPane>
</f:view>

I need some guidance as to how to code the included "campaign2.jsp," the
backing bean, and the faces-config such that the response is rendered within
tab1.  Currently, it is coded such that the response JSP takes over the
entire screen.  My guess is that the navigation action in faces-config must
refer to "tabbed.jsp" and I need to include additional logic in the
tabbed.jsp.

I am a DHTML UI developer and am new to trying to code Java.

Thanks in advance,
Matt
-- 
View this message in context: 
http://www.nabble.com/need-working-panelTabbedPane-examples-tf2222242.html#a6156681
Sent from the MyFaces - Users forum at Nabble.com.

Reply via email to