我有一个使用JSF实现的应用程序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}方法。为什么两个方法只在执行ajax调用才能执行“searchPanel”面板时执行?不应只运行#{searchBean.activeTab2}方法?。
感谢。
答案 0 :(得分:0)
我不确定我是否理解正确但默认情况下<a4j:outputPanel>
会对每个AJAX请求重新呈现,即使您没有将其ID放入@render;禁用添加ajaxRendered="false"
。