Hi.

I have a problem with the richfaces datascroller. The use case is simple: based 
on the selection in a listbox the app shows a list of results. 
But the datascroller only works when my seam component (searchservice) is in 
the SESSION scope or if i create a long running conversation. In any other 
scopes the action (searchservice.searchCircuits) is not called when I click the 
buttons to paginate.

Is this the way to use the datascroller or can it work with PAGE scopes?


  |     <h:panelGrid id="panel1" columns="3">
  |     <h:selectOneListbox id="combonodes" value="#{node}" size="1">
  |         <s:convertEntity/>
  |         <s:selectItems value="#{listNodes}" var="_node" 
label="#{_node.description}" noSelectionLabel="---"/>
  |     </h:selectOneListbox>
  | 
  |     <a:commandButton value="search" 
action="#{searchservice.searchCircuits(nodo.id)}"
  |                          reRender="resultsPanel"/>
  | 
  |     </h:panelGrid>
  |     
  |     <h:panelGroup id="resultsPanel">
  |         
  |             <rich:datascroller ajaxSingle="false" align="left"  
for="tablacircuitos" maxPages="20" rendered="#{listCircuits.rowCount>10}" />    
            
  | 
  |         <rich:dataTable id="tablacircuitos" rows="10" 
value="#{listCircuits}" var="_circuit">
  | 
  | ...................
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4124287#4124287

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4124287
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to