I am currently running wicket 1.4-rc2

I have nested forms setup in the wizard.  One of my steps is as follows.

<code>
public class MyStep1 extends WizardStep {
    public MyStep1(final CompoundPropertyModel<Campaign> campaignModel) {
        super("Step 1", "Wow bananas");

        add(new Form("form") {
            @Override
            protected void onSubmit() {
                super.onSubmit();  <--- never fired
            }
        });
    }
}
</code>


The wizard successfully navigates between steps, and validation occurs
against any fields in the nested forms.


The onSubmit of the inner form is never fired - this is ... pretty annoying :)

Any ideas?

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

Reply via email to