在我的应用程序中,我创建了一个向导。看起来我无法切换面板,因为在未显示的面板上验证失败。
向导具有以下布局:
<rich:modalPanel>
<f:facet name="header">
<h:outputText value="#{messages['motivation.title']}" />
</f:facet>
<h:messages />
<rich:togglePanel id="motivationTogglePanel" switchType="ajax" initialState="wiz1" rendered="#{motivationController.enabled}">
<f:facet name="wiz1">
<f:subview id="wiz1sub">
<rich:toggleControl value="next" switchToState="wiz2"></rich:toggleControl>
</f:subview>
</f:facet>
<f:facet name="wiz2">
<f:subview id="wiz2sub">
<h:selectManyCheckbox id="checkBoxList1" required="true" value="#{controller.selectedValue}" layout="pageDirection">
<f:selectItems value="#{controller.options}"></f:selectItems>
</h:selectManyCheckbox>
</f:subview>
</f:facet>
</rich:modalPanel>
modalPanel从wiz1面板开始正确显示。现在当用户点击toggleControl时没有任何反应。如果我从组件中删除所需的字段,则切换工作。
如何才能正确验证当前显示的组件?
答案 0 :(得分:1)
要解决此问题,请用a4j:region替换f:subview。这将解决问题,因为区域限制了服务器端处理(包括验证)。
答案 1 :(得分:0)
我已使用普通面板替换了togglePanel,并使用控制器属性重新调整了正确的面板。