AbstractAjaxBehavior back button problem

2013-03-16 Thread armandoxxx
-back-button-problem-tp4657293.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: AbstractAjaxBehavior back button problem [SOLVED]

2013-03-16 Thread armandoxxx
Regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AbstractAjaxBehavior-back-button-problem-tp4657293p4657297.html Sent from the Users forum mailing list archive at Nabble.com

Re: Custom PagingNavigation Back-Button -Problem

2011-07-19 Thread brazz
really appreciate that. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Custom-PagingNavigation-Back-Button-Problem-tp3666779p3677549.html Sent from the Users forum mailing list archive at Nabble.com

Custom PagingNavigation Back-Button -Problem

2011-07-14 Thread brazz
prevItem = f .findPrevBrowsingItem(selectedBi); this.selectedBi = prevItem; } } } -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Custom-PagingNavigation-Back-Button-Problem

Re: Back button problem in wicket

2011-04-29 Thread madaan18
service class.. Please tell me what is the problem and how to solve it.. -- Thanks in advance -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Back-button-problem-in-wicket-tp3480260p3483270.html Sent from the Users forum mailing list archive at Nabble.com

Re: Back button problem in wicket

2011-04-29 Thread vineet semwal
button if i don't serialize but still throwing an exception.. I don't wanna serialize my service class.. Please tell me what is the problem and how to solve it.. -- Thanks in advance -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Back-button-problem-in-wicket

Re: Back button problem in wicket

2011-04-29 Thread Martin Grigorov
an exception.. I don't wanna serialize my service class.. Please tell me what is the problem and how to solve it.. -- Thanks in advance -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Back-button-problem-in-wicket-tp3480260p3483270.html Sent from the Users forum

Re: Back button problem in wicket

2011-04-29 Thread vineetsemwal
martin-g : heh yeah i realized it after hitting on submit but then i thought he will figure it out ,thanks :) - vineet semwal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Back-button-problem-in-wicket-tp3480260p3483658.html Sent from the Users forum mailing

Back button problem in wicket

2011-04-28 Thread madaan18
??? is it because of spring or something else Back button problem : I am on page 1 go 2 page 2 , then using back button i go to page 1 then on clicking a button , i get page expired... Please reply soon.. I need it very urgent -- View this message in context: http://apache-wicket.1842946.n4

Re: Back button problem in wicket

2011-04-28 Thread Andrea Del Bene
serializable.. but when i integrated my project with spring configuration.. i again faced the problem of back button in my project.. why does it happen ??? is it because of spring or something else Back button problem : I am on page 1 go 2 page 2 , then using back button i go to page 1

Re: Back button problem in wicket

2011-04-28 Thread Bas Gooren
??? is it because of spring or something else Back button problem : I am on page 1 go 2 page 2 , then using back button i go to page 1 then on clicking a button , i get page expired... Please reply soon.. I need it very urgent -- View this message in context: http://apache-wicket

Re: chrome + wicket ajax + back button = problem?

2010-10-11 Thread Ryan Crumley
I have (I am using MixedParamHybridUrlCodingStrategy) however in this case the browser is not contacting the server on back button click so the UrlCodingStrategy does not come into play. Ryan On Wed, Oct 6, 2010 at 4:13 PM, mzem...@osc.state.ny.us wrote: I've had similar issues, have you tried

Re: chrome + wicket ajax + back button = problem?

2010-10-11 Thread Pointbreak
See https://issues.apache.org/jira/browse/WICKET-923 for a solution. On Mon, 11 Oct 2010 09:31 -0500, Ryan Crumley crum...@gmail.com wrote: I have (I am using MixedParamHybridUrlCodingStrategy) however in this case the browser is not contacting the server on back button click so the

Re: chrome + wicket ajax + back button = problem?

2010-10-06 Thread MZemeck
I've had similar issues, have you tried HybridUrlCodingStrategy? Notice: This communication, including any attachments, is intended solely for the use of the individual or entity to which it is addressed. This communication may contain information that is protected from disclosure under

Re: chrome + wicket ajax + back button = problem?

2010-10-03 Thread Ryan Crumley
What is interesting is this is not a wicket specific issue however it is more serious when using wicket than other frameworks due to the expired links causing errors when they reappear. I created a very simple version of the problem. Chrome and IE8 exhibits the problem but Firefox and Safari do

Re: chrome + wicket ajax + back button = problem?

2010-10-03 Thread Zilvinas Vilutis
Yes, it is not repeatable on FF because FF does page caching which IE does not for Back history. Your page must be stateless on the server side. Žilvinas Vilutis Mobile:   (+370) 652 38353 E-mail:   cika...@gmail.com On Sun, Oct 3, 2010 at 3:47 PM, Ryan Crumley crum...@gmail.com wrote: What

Re: chrome + wicket ajax + back button = problem?

2010-10-03 Thread Ryan Crumley
Just to clarify: The page in the example link I sent is stateless (it's static html). The other point is that Chrome and IE do not fetch the original page on back button click. They are serving the original html straight from the cache (without the DOM modifications). It sounds like the only fix

Re: chrome + wicket ajax + back button = problem?

2010-09-24 Thread Peter Karich
I had the same problem ... Take a look at http://www.richardnichols.net/2010/03/apache-wicket-force-page-reload-to-fix-ajax-back/ isn't there a better fix? E.g. it seems to me that this 'hack' avoids client-side js caching (or is this a wrong observation)? Regards, Peter. --

Re: chrome + wicket ajax + back button = problem?

2010-09-23 Thread Richard Nichols
Take a look at http://www.richardnichols.net/2010/03/apache-wicket-force-page-reload-to-fix-ajax-back/ On Wed, Sep 22, 2010 at 12:58 PM, Ryan Crumley crum...@gmail.com wrote: All, I ran into strange behavior involving wicket ajax updates + chrome + back button. I am pretty sure the issue is

chrome + wicket ajax + back button = problem?

2010-09-21 Thread Ryan Crumley
All, I ran into strange behavior involving wicket ajax updates + chrome + back button. I am pretty sure the issue is not caused by wicket but I am hoping the problem might sound familiar to someone and they can point me in the right direction. The scenario goes like this: - An ajax request is

Re: CheckGroup and back Button problem

2009-05-14 Thread Fernando Wermus
I am having the same problem. Does anyone solve it? Thanks in advance. On Thu, May 8, 2008 at 7:59 AM, Steen Larsen steen...@gmail.com wrote: If I instead of item.getModel() for the Check, uses some PropertyModel that evaluates to a String identifier it works fine, but then only the

Re: Back button problem with form

2008-05-31 Thread Mathias P.W Nilsson
I still don't get it. If I check another radio button and press submit it would still do a post from wicket right? -- View this message in context: http://www.nabble.com/Back-button-problem-with-form-tp17512965p17574963.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Back button problem with form

2008-05-31 Thread Mathias P.W Nilsson
://www.nabble.com/Back-button-problem-with-form-tp17512965p17575290.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Back button problem with form

2008-05-31 Thread Eelco Hillenius
After some debugging I solved it in a ugly way. I used PropertyModel() for the form and when I pressed submit the object did'nt update in a correct manner. I think it has to do with that the object is in the session. Weird. Did you check that the target of the property model was the one you

Re: Back button problem with form

2008-05-30 Thread Timo Rantalaiho
On Thu, 29 May 2008, Marieke Vandamme wrote: I noticed the same behavior in firefox, but for me everything works fine in internet explorer. My form is not working with ajax, but with the standard submit. Is it browser specific or can I change the behavior in my code? Probably it depends on

Back button problem with form

2008-05-28 Thread Mathias P.W Nilsson
this? -- View this message in context: http://www.nabble.com/Back-button-problem-with-form-tp17512965p17512965.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: CheckGroup and back Button problem

2008-05-08 Thread Thomas Mäder
We seem to have a similar problem with a wizard page. We came across the following code in Check.onComponentTag(..) if (group.hasRawInput()) { final String[] input = group.getInputAsArray(); if (input != null) { for (int i = 0;

Re: CheckGroup and back Button problem

2008-05-08 Thread Steen Larsen
If I instead of item.getModel() for the Check, uses some PropertyModel that evaluates to a String identifier it works fine, but then only the identifier is saved, and not the object, which as I understand it should be the purpose. I haven't looked at the code, but I wander what uuid is exactly as

CheckGroup and back Button problem

2008-05-07 Thread Steen Larsen
Hi, I have made a CheckGroup vith a ListView of Check's than works fine, except that when it is submitted and I'm on the next page and want to go back through a Wicket Button (not the browsers back button), all the checks are empty even thouch the model behind still contains the selected obejcts.

Re: Back button problem

2008-03-27 Thread Johan Compagner
pls help a little bit? thanks jeff -- View this message in context: http://www.nabble.com/Back-button-problem-tp16313414p16319071.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e

Re: Back button problem

2008-03-27 Thread bhitai
has the primary key of the category, and Class name of the objects to be loaded (this is what what I do in page.reload) for that category. -- View this message in context: http://www.nabble.com/Back-button-problem-tp16313414p16324501.html Sent from the Wicket - User mailing list archive

Re: Back button problem

2008-03-27 Thread Igor Vaynberg
of the objects to be loaded (this is what what I do in page.reload) for that category. -- View this message in context: http://www.nabble.com/Back-button-problem-tp16313414p16324501.html Sent from the Wicket - User mailing list archive at Nabble.com

Back button problem

2008-03-26 Thread bhitai
since over-written its contents through AJAX calls. Now how do we bring back a page that has been AJAX updated but not refreshed by the browser? thanks in advance, jeff -- View this message in context: http://www.nabble.com/Back-button-problem-tp16313414p16313414.html Sent from the Wicket

Re: Back button problem

2008-03-26 Thread Igor Vaynberg
? thanks in advance, jeff -- View this message in context: http://www.nabble.com/Back-button-problem-tp16313414p16313414.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail

Re: Back button problem

2008-03-26 Thread bhitai
-- View this message in context: http://www.nabble.com/Back-button-problem-tp16313414p16319071.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Wizard Browser Back Button Problem

2007-10-12 Thread marcus dickerhof
Hi, I have a problem with my wizard. At the end of the wizard-flow, I press the finish button -- Database Insert occurs. + Redirect to another page. Then I press the browser back button. -- The wizard page occurs, and I can repress the finish button again -- A new Database insert occurs. I would

Re: Wizard Browser Back Button Problem

2007-10-12 Thread marcus dickerhof
Thanks Igor, some things are just too obvious :-) Marcus 2007/10/12, Igor Vaynberg [EMAIL PROTECTED]: in your wizard have a field submitted and set that to true once the finish button processing is done. also check it in the beginning of the wizard processing stage and if it is true show

Re: Wizard Browser Back Button Problem

2007-10-12 Thread Igor Vaynberg
in your wizard have a field submitted and set that to true once the finish button processing is done. also check it in the beginning of the wizard processing stage and if it is true show an error. -igor On 10/12/07, marcus dickerhof [EMAIL PROTECTED] wrote: Hi, I could solve the problem, but

Re: Wizard Browser Back Button Problem

2007-10-12 Thread marcus dickerhof
Hi, I could solve the problem, but I do not no if that is a nice solution: in the onFinish method of my wizard I call: getPage().getPageMap().remove(getPage()); So now the page is manually expired (right?). When the user presses the browser back button and then he presses finish, the gets