0

我有一个应用程序使用 JSF implementation 2.1.29 Sun JSF RI 与 Spring 3.1.0 和 Richfaces 4.3.7 集成,代码如下:

<h:form>
<a4j:outputPanel rendered="#{searchBean.activeTab}">
    .....
</a4j:outputPanel>
</h:form>

<h:form>
<a4j:outputPanel id="searchPanel">
    <a4j:outputPanel rendered="#{searchBean.activeTab2}">

                <div class="formline">
                    <div class="formLabelGrueso">
                        <h:outputText value="#{msgs['search.height']}" />
                    </div>
                    <div class="formTextCorto oblig">
                        <h:inputText value="#{searchBean.form.height}" required="true" label="#{msgs['search.height']}" maxlength="6">
                            <f:validateDoubleRange minimum="50.00" maximum="300.00" />
                        </h:inputText>
                    </div>
                    <div class="formLabelGrueso">
                        <h:outputText value="#{msgs['searchBean.weight]}" />
                    </div>
                    <div class="formTextCorto">
                        <h:inputText value="#{searchBean.form.weight}" label="#{msgs['searchBean.weight]}" maxlength="6">
                            <f:validateDoubleRange minimum="1.00" maximum="199.00" />
                        </h:inputText>
                    </div>
                </div>      
        <a4j:commandButton action="#{searchBean.advancedSearch}" execute="@this" id="buttonDefault"
            render="searchPanel" value="#{msgs['user.button.search']}"></a4j:commandButton> 
    </a4j:outputPanel>
</<a4j:outputPanel>
</h:form>

ManagedBean 由 spring 框架管理,代码如下:

@Component
@Scope(WebApplicationContext.SCOPE_SESSION)
public class SearchBean{
    private boolean activeTab;

    private boolean activeTab2;

    ....
}

当我提交时,在服务器上运行 #{searchBean.activeTab} 和 #{searchBean.activeTab2} 方法。为什么当真的只进行呈现“searchPanel”面板的ajax调用时执行这两种方法?不应该只运行#{searchBean.activeTab2} 方法?。

谢谢。

4

1 回答 1

0

我不确定我是否理解正确,但默认情况下<a4j:outputPanel>会随着每个 AJAX 请求重新呈现,即使您没有将其 id 放入 @render; 禁用该添加ajaxRendered="false"

于 2015-02-19T09:24:50.653 回答