FeedbackMessages not appearing on page from panel

2014-04-08 Thread David Beer
Hi All I have a panel which is added to my page which has contained form which is used to update users password. All is good here, when the user submits the form using AjaxButton it goes through the process and gets to the from submit ok. If everything is valid it updates data fine at which point

Re: FeedbackMessages not appearing on page from panel

2014-04-08 Thread Ernesto Reinaldo Barreiro
You are jumping to a new page? Not sure but you might have to pass messages via session. On Tue, Apr 8, 2014 at 2:36 PM, David Beer david.m.b...@gmail.com wrote: Hi All I have a panel which is added to my page which has contained form which is used to update users password. All is good

Re: FeedbackMessages not appearing on page from panel

2014-04-08 Thread David Beer
I am actually reloading the same page, due to making sure that the forms are reset correctly and the associated data. How do you mean via the session? is it just as possible to send them using PageParameters and interpret them in the constructor and then add the message to the feedback. David

Re: FeedbackMessages not appearing on page from panel

2014-04-08 Thread Martin Grigorov
Hi, getSession().success(...) Martin Grigorov Wicket Training and Consulting On Tue, Apr 8, 2014 at 5:05 PM, David Beer david.m.b...@gmail.com wrote: I am actually reloading the same page, due to making sure that the forms are reset correctly and the associated data. How do you mean via the

Re: FeedbackMessages not appearing on page from panel

2014-04-08 Thread David Beer
Hi Martin/Ernesto Thanks for this it worked brilliantly. Thanks David On 8 April 2014 15:08, Martin Grigorov mgrigo...@apache.org wrote: Hi, getSession().success(...) Martin Grigorov Wicket Training and Consulting On Tue, Apr 8, 2014 at 5:05 PM, David Beer david.m.b...@gmail.com