1

我们使用 PrimeFaces 3.3.1、Mojarra 2.1.10 和 Tomcat 7.0.26。

我们应用程序中的所有组件都是以编程方式创建的,并且仅绑定了页面上的根组件。这是页面——模板的一部分——绑定到根组件,Panel 称为 rootPanel:

<ui:composition template="/layout/template.xhtml"
   xmlns="http://www.w3.org/1999/xhtml"
   xmlns:ui="http://java.sun.com/jsf/facelets"
   xmlns:f="http://java.sun.com/jsf/core"
   xmlns:h="http://java.sun.com/jsf/html"
   xmlns:porta="http://java.sun.com/jsf/composite/porta"
   xmlns:p="http://primefaces.org/ui">

   <ui:define name="body">
      <h:messages globalOnly="true" styleClass="message" />
      <p:ajaxStatus onstart="statusDialog.show();"
                    onsuccess="statusDialog.hide();" />

      <p:dialog modal="true" widgetVar="statusDialog" header=".::."
                draggable="false" closable="false">
         <p:graphicImage value="/img/progressbar.gif" />
      </p:dialog>

      <h:form id="initForm" name="initform">
         <p:panel id="rootPanelId" binding="#{applicationErp.rootPanel}" 
                  rendered="true">
         </p:panel>
       </h:form>
   </ui:define>
</ui:composition>

这就是我们以编程方式创建 TabView 组件的方式:

mainTabbedPane = new TabView();
mainTabbedPane.setId("formErpMainTabViewId");
mainTabbedPane.setStyle("height: 100%; width: 100%;");

AjaxBehavior ajaxBehavior = new AjaxBehavior();
MethodExpression methodExpression = FacesUtil.createMethodExpression("#{formerpmain.tabChanged}", Void.class, new Class<?>[]{TabChangeEvent.class});

ajaxBehavior.addAjaxBehaviorListener(new AjaxBehaviorListenerImpl(methodExpression));
ajaxBehavior.setListener(methodExpression);
ajaxBehavior.setUpdate(":initForm:formErpMainTabViewId");

mainTabbedPane.addClientBehavior("tabChange",ajaxBehavior);

这是 tabChanged 方法:

public void tabChanged(TabChangeEvent event){
  requestPartialRendering();
}

在上面的 MethodExpression 中指定的方法 tabChanged 永远不会在选项卡更改时被调用。这是指定在选项卡更改时调用的方法的正确方法吗?如何指定要在选项卡更改时调用的 bean 方法?

4

1 回答 1

1

经过几天的实验,我们找到了解决方案。我们将“@parent”值设置为 setProcess 方法,只有该值有效,并从 MethodExpression 的参数列表中删除 TabChangedEvent。经过这些更改后,它工作正常。

代码:

AjaxBehavior ajaxBehavior = new AjaxBehavior();
MethodExpression methodExpression = FacesUtil.createMethodExpression(
        "#{formerpmain.onTabChange}", void.class, new Class<?>[]{});

ajaxBehavior.addAjaxBehaviorListener(
        new AjaxBehaviorListenerImpl(methodExpression));
ajaxBehavior.setListener(methodExpression);
ajaxBehavior.setProcess("@parent");
于 2012-07-17T14:14:52.800 回答