How and when to retrieve messages from Session

2008-03-05 Thread Warren
I need to display messages from the Session in a plain JavaScript alert window instead of a feedback panel. I wrote something that seems to work only part of the time. I am writing my messages to error(...) on the Session and retrieving them from the Session with

Re: How and when to retrieve messages from Session

2008-03-05 Thread Igor Vaynberg
feedback messages are not cleaned up until the end fo request, so you should be able to retrieve them... if you are doing this across pages make sure you call getsession().error(..) not just error(..) -igor On Wed, Mar 5, 2008 at 6:01 PM, Warren [EMAIL PROTECTED] wrote: I need to display

RE: How and when to retrieve messages from Session

2008-03-05 Thread Warren
: Wednesday, March 05, 2008 7:06 PM To: users@wicket.apache.org Subject: Re: How and when to retrieve messages from Session feedback messages are not cleaned up until the end fo request, so you should be able to retrieve them... if you are doing this across pages make sure you call getsession

Re: How and when to retrieve messages from Session

2008-03-05 Thread Igor Vaynberg
it this way? -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2008 7:06 PM To: users@wicket.apache.org Subject: Re: How and when to retrieve messages from Session feedback messages are not cleaned up until the end fo request