我有一个带有菜单和选项卡控件(带数据表)的primefaces的xhtml页面。数据表获取基于'type'变量的值(在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>
bean代码:
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>
答案 0 :(得分:2)
声明为@ViewScoped
的Bean有时表现得像@RequestScoped
个bean,并在每个请求或回发时重新创建。原因在这篇优秀的博文中有所描述:@ViewScoped fails in tag handlers。
在参考文章中,列出了一些可能的解决方案。您还可以将值保存在会话范围中,并将其注入到视图/请求范围内的bean中。