Maybe you can use something like this :

    new AjaxLazyLoadPanel("PanelId") {
            Panel myPanel;
            
            @Override
            public Component getLazyLoadComponent(String varMarkupId) {
                if (myPanel == null) {
                    myPanel = new EmptyPanel(varMarkupId);  //Use your panel
instead!
                }
                return myPanel;
            }
        };

Regards,

Gabriel.



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/load-with-AjaxLazyLoadPanel-just-once-tp4655612p4655615.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