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
Post a Comment