Thanks for your suggestions! I am trying to locate the source code for the Wicket-extensions Wizard, and found the following at
http://svn.apache.org/viewvc/wicket/branches/wicket-1.5.x/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard.java?view=markup I am using Wicket 6.3.0, is this the right place for the wicket-extensions code? I guess if Wizard code hasn't been changed since 1.5, I am looking at the right code here: protected <E> Form<E> newForm(final String id) { return new Form<E>(id); } So i could overwrite this and do "return new MyForm<E>(id)" instead, where MyForm has an empty appendDefaultButtonField(). I hope taking out this won't affect the other Wizard functionalities. I will give it a try and let you know. Thanks!! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-extensions-Wizard-buttons-not-working-tp4655280p4655291.html Sent from the Users forum mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
