0

我写了以下代码,

        <h:form id="PrefForm" >
        <hx:commandExButton id="preferenceButton" type="button" style="align:right;" value="#{nls.preferenceLink }" title="#{nls.preferenceLinkTitle}" >
                    <hx:behavior event="onclick" behaviorAction="get" targetAction="prefPanelGroup"></hx:behavior>
                    <hx:behavior event="onclick" behaviorAction="show;stop" targetAction="preferenceSet"></hx:behavior>
        </hx:commandExButton>

        <hx:panelDialog id="preferenceSet"    type="modal" styleClass="panelDialog" title="#{nls.preferenceDialogTitle}" >
            <h:outputText styleClass="panelStartMessage" style="display:block;" value="#{nls.preferenceDialogWindowText}" />

            <h:panelGroup id="prefPanelGroup" rendered="#{neoReport.hasSelectItem }" style="display:block;width:300px;height:360px;overflow:auto;" >
                <hx:ajaxRefreshRequest id="refreshform" />
                <h:selectManyCheckbox value="#{neoReport.selectedItems}" layout="pageDirection">
                        <f:selectItems value="#{neoReport.selectItems}" />
                </h:selectManyCheckbox>
            </h:panelGroup> 

            <hx:panelBox id="noCommandWindow" rendered="#{!neoReport.hasSelectItem }" style="display:block;width:300px;height:50px;" layout="lineDirection"> 
                <h:outputText styleClass="outputText" id="cmdInfo"    value="#{nls.noCommands}" />
            </hx:panelBox>

            <h:panelGroup id="buttonBox1" styleClass="panelStartBox" >
                    <hx:commandExButton id="submitPref"    styleClass="commandExButton" type="submit" value="#{nls.submit}" action="#{neoReport.action}">
                        <hx:behavior event="onclick" behaviorAction="hide"    targetAction="preferenceSet" id="behaviorSubmitPref" />
                    </hx:commandExButton>
                    <hx:commandExButton id="CancelPref"    styleClass="commandExButton" type="submit" value="#{nls.cancel}" action="neoReport">
                        <hx:behavior event="onclick" behaviorAction="hide"    targetAction="preferenceSet" id="behaviorCancelPref" />
                    </hx:commandExButton>
            </h:panelGroup>
         </hx:panelDialog>
    </h:form>

这段代码背后的基本思想是在页面上有一个按钮,当用户单击时,它应该从 bean 中获取最新数据(通过提取文件,该文件不断更新)并在 databean 中填充 List 对象,以便 h: selectManyCheckBox 可以渲染它。所以我用commandExButton添加了一个行为,这样它就会得到新的数据,它应该在selectManyCheckBox中呈现最新的选项。但是在这两个 hx:behavior 中,只有第一个在工作,它调用 getter 函数

<f:selectItems value="#{neoReport.selectItems}"

但它不会进一步渲染panelDialog。如果我删除“get”的行为,它将显示面板对话框,但不会显示更新的数据。所以我无法找出,我在这里做错了什么。有人可以帮忙吗?

4

1 回答 1

0

首先我不知道这是什么类型的标签库。您应该在标签和/或问题中指出它。

您应该只有一个<hx:behavior>标签,它可以为您完成所有工作。如果这样做,您应该有一个调用所有三个方法的方法。这些标签是否可以使用类似 AJAX 的方式重新呈现多个组件targetAction="prefPanelGroup, preferenceSet"

据我所知,重新渲染preferenceSet也会导致prefPanelGroup重新渲染,所以单独重新渲染是没有意义的。

此外,重新渲染prefPanelGroup只能通过告诉<hx:behavior>标签一个更精确的 id 来工作,比如"PrefForm:prefPanelGroup".

希望这会有所帮助,丹尼尔

于 2010-09-20T18:27:21.337 回答