Hm, I just tried to do what you are talking about and it works for me.
I have an ALLP:
add(new AjaxLazyLoadPanel("lazy") {
            @Override
            public Component getLazyLoadComponent(*String id*) {
                return new ContentPanel(*id*);
            }
        });

and AjaxLink:
add(new AjaxLink("thumbLink") {
            @Override
            public void onClick(AjaxRequestTarget ajaxRequestTarget) {
               
System.out.println(this.getPage().get("lazy").get(*"content"*));
            }
        });

And in debug I can see, that get("content") returns me component that I
need.



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Possible-bug-with-AjaxLazyLoadPanel-tp4658793p4658838.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to