You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by wheleph <wh...@gmail.com> on 2007/10/23 10:39:36 UTC

Two forms on single page

How to submit two forms by clicking on one link?

wheleph
-- 
View this message in context: http://www.nabble.com/Two-forms-on-single-page-tf4675929.html#a13359615
Sent from the Wicket - User mailing list archive at Nabble.com.


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


Re: Two forms on single page

Posted by Martijn Dashorst <ma...@gmail.com>.
You are asking for something that HTML doesn't support.

That said...

Wicket 1.3's nested forms support allows you to do this:

<form wicket:id="outer">
    <form wicket:id="inner1"></form>
    <form wicket:id="inner2"></form>
    <input type="submit" value="save both forms" />
</form>

At least to my understanding this should work.

Martijn

On 10/23/07, wheleph <wh...@gmail.com> wrote:
>
> How to submit two forms by clicking on one link?
>
> wheleph
> --
> View this message in context: http://www.nabble.com/Two-forms-on-single-page-tf4675929.html#a13359615
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>


-- 
Buy Wicket in Action: http://manning.com/dashorst
Apache Wicket 1.3.0-beta4 is released
Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.0-beta4/

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