Re: Submit button without form component

2013-04-29 Thread Bertrand Guay-Paquet
Thanks for the suggestion. I dropped the button component and went for a straight stateless form. This allows me to still have a single Wicket component. On 27/04/2013 10:06 AM, Martin Grigorov wrote: Hi, I haven't tried something like this before and I don't know what exactly breaks but the

Re: Submit button without form component

2013-04-27 Thread Martin Grigorov
Hi, I haven't tried something like this before and I don't know what exactly breaks but the simplest solution I see at the moment is to use StatelessForm. On Sat, Apr 27, 2013 at 4:01 PM, Bertrand Guay-Paquet < ber...@step.polymtl.ca> wrote: > Hello, > > I have action links which I want to tran

Submit button without form component

2013-04-27 Thread Bertrand Guay-Paquet
Hello, I have action links which I want to transform to POST actions since they can have side-effects on the database. (See http://stackoverflow.com/questions/679013/get-vs-post-best-practices) My understanding is that this is only possible with either javascript or forms. I decided (for now