Re: Back button problem in wicket

2011-04-29 Thread madaan18
Hi, Thanks for the help... problem is solved.. i integrated spring and wicket.. but a new problem has come.. it is saying me to serialize the service class although it is not affecting the problem of back button if i don't serialize but still throwing an exception.. I don't wanna serialize my

Re: Back button problem in wicket

2011-04-29 Thread vineet semwal
use spring bean On Fri, Apr 29, 2011 at 2:55 PM, madaan18 madaa...@gmail.com wrote: Hi, Thanks for the help... problem is solved.. i integrated spring and wicket.. but a new problem has come.. it is saying me to serialize the service class although it is not affecting the problem of back

Re: Back button problem in wicket

2011-04-29 Thread Martin Grigorov
On Fri, Apr 29, 2011 at 12:31 PM, vineet semwal vineetsemwal1...@gmail.com wrote: use spring bean @vineet: Better use '@SpringBean' because it is not very clear what you mean ;-) @madaan18: show us some code so we can tell you for sure what the problem is On Fri, Apr 29, 2011 at 2:55 PM,

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

Re: Back button problem in wicket

2011-04-28 Thread Andrea Del Bene
Hi, what does your application/web server's log say? You should check it for some Wicket message or exception that could explain page expiration. Hey, I am new to wicket.. I was having problem of back button in wicket.. but it got solved when i made all the pages and service class

Re: Back button problem in wicket

2011-04-28 Thread Bas Gooren
Hi, It sounds like you use spring dependency injection directly, which will indeed cause serialization issues. Instead, use the wicket spring integration, which will inject serializable proxies. See https://cwiki.apache.org/WICKET/spring.html for more info. Bas Op 28-4-2011 8:36, schreef

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
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. When I used Model() instead it worked. -- View this message in context:

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

Re: Back button problem

2008-03-27 Thread Johan Compagner
So you see the initial state instead of the latest ajax state? This is a browser problem, i believe ms is fixing that for ie in number 8. You can go around it by letting the backbutton always go to the server, look at configureResponse/setheaders of webpage an add nostore On 3/27/08, bhitai

Re: Back button problem

2008-03-27 Thread bhitai
Hi Igore I have some code to share now. This is what I did: in the constructor for the Application, I mount pages with hybridUrlCoding strategy as suggested by you. mount(new HybridUrlCodingStrategy(home, MenuPage.class)); mount(new

Re: Back button problem

2008-03-27 Thread Igor Vaynberg
my suggestion is to make it work without ajax first, that way you know everything is correctly setup. then add ajax into the mix. -igor On Thu, Mar 27, 2008 at 4:46 AM, bhitai [EMAIL PROTECTED] wrote: Hi Igore I have some code to share now. This is what I did: in the constructor for the

Re: Back button problem

2008-03-26 Thread Igor Vaynberg
mount your pages using hybridurlcodingstrategy -igor On Wed, Mar 26, 2008 at 12:05 PM, bhitai [EMAIL PROTECTED] wrote: I am a new wicket user, and have been trying to develop an application for the past few weeks. What I initially did was to use some databinder API to fetch persistent

Re: Back button problem

2008-03-26 Thread bhitai
Hi Igor thanks for the prompt reply..I'm trying to figure out how exactly to do that. This is because I have the following situation and I don't know where to apply the url coding strategy: 1. there are two pages, one is a menu and one detail page 2. menu page displays objects in a hierarchy -