1

我有弹出窗口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> 
4

2 回答 2

1

您需要<rich:popupPanel>在打开它之前更新它的内容。

<a4j:commandLink ... render=":cListID" oncomplete="#{rich:component('CModalPanel')}.show()" />
于 2012-06-14T20:39:19.937 回答
0

这是一个相关的错误https://community.jboss.org/thread/169542

于 2012-08-21T07:11:18.697 回答