2 Replies Latest reply on May 14, 2009 12:34 PM by nimo22

    rich:suggestionbox with paginator?

    nimo22

      I have a rich:suggestionbox coupling with a query. The query is limited to fetch at most 50 rows.

      So I need something like a scroller or a paginator within my suggestionbox, whicht triggers a action to fetch the next 50 rows and update my suggestionbox with these new fetched rows.

      I tried to integrate a a4j:commandLink within my suggestionbox as a footer-facet, but it is not rendered:

      <rich:suggestionbox ...>
       <h:column>
       ..
      </h:column>
      
      <f:facet name="footer">
      <a4j:commandLink action="#{myBean.nextSuggestions}" value="next suggestions.." />
      </f:facet>
      </rich:suggestionbox>


      How can I do that?