spring - Issue with Richfaces Datatable filter search -


here scenario have richfaces datatable have added filter concept below

<rich:column width="250px" sortby="#{test.name}" filterexpression="#{fn:equalsignorecase(test.name, filtervalue)}"                     filtervalue="#{inventoryfilter.name}"> 

and bean initialized application-context.xml , scope of bean request

edit:-

 <bean id="inventoryfilter" class="com.alu.ipprd.bsm.soa.portal.filter.inventoryfilter" scope="request" /> 

now when switching tab ,let suppose tab a tab b old search value still coming while each tab have defined switchtype="server"

so mean when swtiching tabs request going server application should initialized inventoryfilter.java class.

but not working please guide me doing wrong?

edit:- tab code

<rich:tabpanel id="tabpanel1" switchtype="server"                         selectedtab="#{panelmenubean.selectedtabname}"                         value="#{panelmenubean.selectedtabname}"                         style="max-width:500px; height:300px;"                         itemchangelistener="#{inventoriesbean.getclearbean}">                           <rich:tab id="customertab"                             name="#{bsmportallabel['tab.inventory.customer']}" rendered="#{loginbean.isinventoriescustomertabenable()}"> </rich:tab>  //some other tabs here  </rich:tabpanel> 


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -

Why does a .NET 4.0 program produce a system.unauthorizedAccess error on a Windows Server 2012 machine with .NET 4.5 installed? -