0

我有一个带有primefaces 的菜单和选项卡控件(带有数据表)的xhtml 页面。数据表根据“类型”变量(在 bean 中)获取值。单击每个菜单项时会触发一个操作(onType("param")),并且在 bean 中设置类型变量(如下所示)。但是现在当我在 tabView 中选择一个选项卡时,类型变量再次设置为 null。为什么会这样。

xhtml代码:

    <h:form id="frm">
  <p:menu>
    <p:menuitem value="price losers" action='#{equityBean.onType("losers")}'/>
    <p:menuitem  value="price gainers"/>
    <p:menuitem  value="price volume"/>
  </p:menu>
  <p:tabView activeIndex="#{equityBean.activeIndex}">
    <p:ajax event="tabChange" listener="#{equityBean.onChange}" update=":frm"/>
    <p:tab title="NSE">                   

      <p:dataTable value="#{equityBean.scripList}" var="scrip">
        ....                        
      </p:dataTable>
    </p:tab>
    <p:tab title="BSE">
      <p:dataTable value="#{equityBean.scripList}" var="scrip">
        .....
      </p:dataTable>
    </p:tab>
  </p:tabView>
</h:form>

豆代码:

public void onType(String type)
{
    this.type=type;
}

public void onChange(TabChangeEvent event) {
    exchange=event.getTab().getTitle();
}
   public List<MasterScrip> getScripList() {
      if(type!=null)
      {
       if(type.equalsIgnoreCase("losers"))
       {
        scripList=new ArrayList<MasterScrip> ();
     scripList=getScripByPriceLosers(exchange);
        return scripList;
       }
       else if(type.equalsIgnoreCase("gainers"))
       {
        scripList=new ArrayList<MasterScrip> ();
     scripList=getScripByPriceLosers(exchange);
        return scripList;
       }
       else
       {
           scripList=new ArrayList<MasterScrip> ();
     scripList=getScripByVolumeType(exchange);
       return scripList;
       }
      }
      else
      {
          scripList=new ArrayList<MasterScrip> ();
     scripList=getScripByVolumeType(exchange);
       return scripList;
      }
    }

我哪里错了?

编辑(web.xml)

    <context-param>
    <param-name>javax.faces.PARTIAL_STATE_SAVING</param-name>
    <param-value>true</param-value>
</context-param>
4

1 回答 1

2

声明为的bean@ViewScoped有时表现得像@RequestScopedbean,并在每次请求或回发时重新创建。原因在这篇优秀的博客文章中有所描述:@ViewScoped 在标记处理程序中失败

在引用的文章中,列出了一些可能的解决方案。您还可以将值保存在会话范围内,并仅将其注入您的视图/请求范围 bean。

于 2012-05-25T07:15:54.883 回答