This is my eventlink handler for firstpage in the gallery @InjectPage("Home") private Home homePage;
@Component(parameters = { "event=firstPage" }) private EventLink firstPage; public Object onFirstPage() { logger.info("In onFirstPage : "); collection.size(); cursor = 0; return homePage; } After the app runs and renders... the galleryshows objects... In the eclipse debugger, I his the breakpoint into this handler... but homePage is NULL ? One would think that all that would be taken care of and done at this point. Maybe ? Feel free to slam me guys but I am just tryin to find my way this this bug. It will be nice to find out what is really causing it. Thanks Ken