pepone pepone schrieb:
This not works for me with wicket-wicket-1.2-20060108

As a workaround, you can simply subclass this page and call the super constructor with default parameters in the constructor:


public class HomePage extends MyBasePageWhichRequiresParameters {
        static PageParameters params = new PageParameters();
        {
                params.put("page","Home");
                params.put("action","view");
                params.put("node","/homeDocument.html");
        }

        public HomePage() {
                super(params);
        }
}



Timo


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to