我有弹出窗口h:selectOneMenu
。此弹出窗口将在a4j:commandLink
单击时显示。
h:selectOneMenu
在弹出式渲染中没有调用“值”属性(我使用 System.out.println() 对其进行了调试)。
由于这个值没有在弹出显示中更新,我看到的是最后一个操作值,即使我想在新操作中看到空列表。
有什么建议么?
注意:另一个观察结果是,如果在刷新 h:selectOneMenu 的弹出窗口中“添加”一些按钮,那么它工作正常。
我的代码看起来像这样:
<rich:popupPanel id="CModalPanel"
autosized="true"
resizeable="false"
moveable="true" domElementAttachment="parent">
<f:facet name="header">
<h:outputText value="Select list"/>
</f:facet>
<h:form id="cListID">
<a4j:outputPanel id="panelID">
<h:panelGroup>
<h:selectOneMenu id="cListMenu"
value="#{myBean.currvalue}" >
<f:selectItems value="#{myBean.plistItems}" />
</h:selectOneMenu>
</h:panelGroup>
<h:panelGroup>
<a4j:commandLink id="refreshButton"
actionListener="#{anotherBean.addMethod}"
render=":cListID" >
</a4j:commandLink>
</h:panelGroup>
</a4j:outputPanel>
</h:form>
</rich:popupPanel>