Re: FeedbackPanel and page refresh (f5) after submit

2008-09-12 Thread Ajayi Yinka
Hurray, i have got over it. The problem I was having is that, I forgort to implement the cleanupFeedbackMessages() method which I declare in my session class. I called the method but forgot to put the codes therein. thanks so much. Now, i can continue with my app. I will appreciate it if anyone can

Re: FeedbackPanel and page refresh (f5) after submit

2008-09-11 Thread Igor Vaynberg
here is how it works: if the message is reported against session it is held until rendered, if the message is reported against a component it is held only during the request in which it has been reported. wicket is smart enough to look at the render strategy and not clear messages during the redir

Re: FeedbackPanel and page refresh (f5) after submit

2008-09-11 Thread Timo Rantalaiho
On Thu, 11 Sep 2008, Ajayi Yinka wrote: > > Thomas Lutz wrote: > > > > > > I've a form with some validation added, nothing special (Required, Email > > > check). When I submit the form I get the validation messages in the > > > FeedbackPanel as expected, but :-), hitting f5 for a page refresh after

Re: FeedbackPanel and page refresh (f5) after submit

2008-09-11 Thread Ajayi Yinka
this is exacltly the same problem I am having. Could anyone render any solution to this. Thanks Yinka. On Thu, Sep 11, 2008 at 7:40 AM, kayce <[EMAIL PROTECTED]> wrote: > > Did you find a solution for this? > Thanks > > > Thomas Lutz wrote: > > > > I've a form with some validation added, nothing

Re: FeedbackPanel and page refresh (f5) after submit

2008-09-11 Thread kayce
Did you find a solution for this? Thanks Thomas Lutz wrote: > > I've a form with some validation added, nothing special (Required, Email > check). When I submit the form I get the validation messages in the > FeedbackPanel as expected, but :-), hitting f5 for a page refresh after > the submi

Re: FeedbackPanel and page refresh (f5) after submit

2008-06-26 Thread James Carman
Right, I don't know what the exact settings were, but my IE version automatically did a refresh on a page when FF didn't (this is my vague recollection). I don't typically do a whole lot of tweaking of my browser settings. I'm way too lazy for that. On Thu, Jun 26, 2008 at 10:15 PM, Timo Rantala

Re: FeedbackPanel and page refresh (f5) after submit

2008-06-26 Thread Timo Rantalaiho
On Thu, 26 Jun 2008, James Carman wrote: > Well, IE actually does refresh the page in certain situations, I've > seen. Firefox doesn't have this problem at least in my experience. It depends on the cache settings of the browser and the relevant headers sent by the page. Best wishes, Timo -- T

Re: FeedbackPanel and page refresh (f5) after submit

2008-06-26 Thread James Carman
Well, IE actually does refresh the page in certain situations, I've seen. Firefox doesn't have this problem at least in my experience. On Thu, Jun 26, 2008 at 12:00 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > this has nothing to do with versioning. when you press the back button > in the brows

Re: FeedbackPanel and page refresh (f5) after submit

2008-06-26 Thread Igor Vaynberg
this has nothing to do with versioning. when you press the back button in the browser there shouldnt even be a hit to the serverside, the browser simply pulls what it thinks the last page is out of its cache. -igor On Thu, Jun 26, 2008 at 12:36 AM, Benny Weingarten <[EMAIL PROTECTED]> wrote: > >

Re: FeedbackPanel and page refresh (f5) after submit

2008-06-26 Thread Benny Weingarten
I am fronting a similar problem. My users don't refresh, they go back and forward using the browser's back and forward buttons. In my wicket application, I have a FeedbackPanel in my page that displays error or success, depending on whether the form submitted successfully or not. My Form is a per

Re: FeedbackPanel and page refresh (f5) after submit

2007-12-19 Thread SantiagoA
feedbackMessages are stored to show them once, aftewards they were deleted. Perhaps, try to store them in your own List and feed the FeedbackPanel with the List when the page is displayed again. Maybe this work, i´m not sure about that. ;-) -Santiago Thomas Lutz wrote: > > Hi, > > First of al

FeedbackPanel and page refresh (f5) after submit

2007-12-19 Thread Thomas Lutz
Hi, First of all, great framework ! I've a form with some validation added, nothing special (Required, Email check). When I submit the form I get the validation messages in the FeedbackPanel as expected, but :-), hitting f5 for a page refresh after the submit removes them (don't ask why refre