Re: nested forms and locale

2009-06-09 Thread Igor Vaynberg
a hint as to where to start debugging this. I tried to follow the setLocale() to see what the behaviour of wicket is, but i guess i have to start elsewhere.. Thanks for any answer! msteff wrote: Hi, I am having problems using nested forms and changing locale. I have 2 links for changing

Re: nested forms and locale

2009-06-09 Thread msteff
AjaxButton(submitButton) { protected void onSubmit(AjaxRequestTarget target, Form form) { super.onSubmit(); } }); } } msteff wrote: Hi, I am having problems using nested forms and changing locale. I have 2 links for changing

Re: nested forms and locale

2009-06-09 Thread Igor Vaynberg
For additional commands, e-mail: users-h...@wicket.apache.org -- View this message in context: http://www.nabble.com/nested-forms-and-locale-tp23911537p23939601.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: nested forms and locale

2009-06-09 Thread Morten Steffensen
(AjaxRequestTarget target, Form form) { super.onSubmit(); } }); } } msteff wrote: Hi, I am having problems using nested forms and changing locale. I have 2 links for changing the locale. It works until i press the AjaxButton in the inner form

Re: nested forms and locale

2009-06-08 Thread msteff
: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- View this message in context: http://www.nabble.com/nested-forms-and-locale-tp23911537p23936648.html Sent from the Wicket - User mailing list archive at Nabble.com

nested forms and locale

2009-06-07 Thread Morten Steffensen
Hi, I am having problems using nested forms and changing locale. I have 2 links for changing the locale. It works until i press the AjaxButton in the inner form. Hereafter the txtField's getObject is not called anymore. What am i doing wrong ? Any suggestions ? public class ProblemPage

Re: nested forms and locale

2009-06-07 Thread Brill Pappin
i may be wrong about this because my wicket ajax is still a bit shaky, but try adding the components you wanted updated to the links target. - Brill On 7-Jun-09, at 10:20 AM, Morten Steffensen wrote: Hi, I am having problems using nested forms and changing locale. I have 2 links

Re: nested forms and locale

2009-06-07 Thread Morten Steffensen
of the page.. hmm. Brill Pappin wrote: i may be wrong about this because my wicket ajax is still a bit shaky, but try adding the components you wanted updated to the links target. - Brill On 7-Jun-09, at 10:20 AM, Morten Steffensen wrote: Hi, I am having problems using nested forms