0 Replies Latest reply on Feb 11, 2008 9:15 AM by rhephner

    scrollerListener method not found?!?

      Hi,

      I'm trying to implement a scollerListener on a datascroller like the following:

      <rich:datascroller id="scroller" for="matches" renderIfSinglePage="false" reRender="resultcount" scrollerListener="#{qsearchRequest.doScroll}"/>


      The EJB qsearchRequest is an ejb defined like so . . .

      @Name("qsearchRequest")
      @Scope(org.jboss.seam.ScopeType.PAGE)
      public class QSearchRequestAdapter {
      
      . . . .
      
       public void doScroll(DataScrollerEvent event) {
      . . .
       }
      }


      The EJB is packaged in a jar file that is deployed as an ear alongside the xhtml file with the datascroller in it. Other properties of the qsearchRequest can be found, but not the doScroll method.

      What the heck am I doing wrong?

      Thanks.