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.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4128370#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...