Hello,
I have a small form bound to a panelGroup that I can't get working
when placed in a panelTab inside a panelTabbedPane.
When the form is submitted the model does not get updated. It's as if
my save command link has magically turned into a cancel link.
Is it even possible to submit a form inside a panelTabbedPane?
<t:panelTabbedPane binding="#{controller.tabbedPane}"
serverSideTabSwitch="true"
width="600"
styleClass="tabbedPanel">
<t:panelTab id="tab_1" label="Panel 1" >
<f:subview id="turkey">
<h:panelGroup
binding="#{controller.applicant.contact.contactPanel}"/>
</f:subview>
</t:panelTab>
<t:tabChangeListener type="com.foo.main.Controller"/>
</t:panelTabbedPane>
Notice the subview. It does nothing unfortunately. (Mmm, turkey)
Thank you.