Re: Form GET doesn't call onSubmit method

2008-10-05 Thread eyalbenamram
OK.. thanks anyway igor.vaynberg wrote: > > no idea if it works for post but not get... > > -igor > > On Sun, Oct 5, 2008 at 9:26 AM, eyalbenamram <[EMAIL PROTECTED]> > wrote: >> >> I will try to reproduce it in a quickstart application.. >> If you won't hear from me again about this problem

Re: Form GET doesn't call onSubmit method

2008-10-05 Thread Igor Vaynberg
no idea if it works for post but not get... -igor On Sun, Oct 5, 2008 at 9:26 AM, eyalbenamram <[EMAIL PROTECTED]> wrote: > > I will try to reproduce it in a quickstart application.. > If you won't hear from me again about this problem - it's probably because > it worked. > One last question: can

Re: Form GET doesn't call onSubmit method

2008-10-05 Thread eyalbenamram
I will try to reproduce it in a quickstart application.. If you won't hear from me again about this problem - it's probably because it worked. One last question: can you think of something I did that caused this problem to occure? My thougths are: if it works for quickstart app but not for me -

Re: Form GET doesn't call onSubmit method

2008-10-05 Thread Igor Vaynberg
just tried the code you pasted in the other email and it works fine for me. this is why i asked for a quickstart...for now i cant reproduce your problem. -igor On Sun, Oct 5, 2008 at 8:57 AM, eyalbenamram <[EMAIL PROTECTED]> wrote: > > I have no idea why.. I think it is a bug.. when using > POST

Re: Form GET doesn't call onSubmit method

2008-10-05 Thread eyalbenamram
I have no idea why.. I think it is a bug.. when using POST it works just fine. So is there a way to use GET and call onSubmit in another way? igor.vaynberg wrote: > > first you have to figure out why its not getting called > > -igor > > On Sun, Oct 5, 2008 at 4:10 AM, eyalbenamram <[EMAIL PR

Re: Form GET doesn't call onSubmit method

2008-10-05 Thread Igor Vaynberg
first you have to figure out why its not getting called -igor On Sun, Oct 5, 2008 at 4:10 AM, eyalbenamram <[EMAIL PROTECTED]> wrote: > > Hi > Is there a way to override this bug? the problem is I need a solution for > the problem NOW > and I cannot wait for the next version of wicket to come out

Re: Form GET doesn't call onSubmit method

2008-10-05 Thread eyalbenamram
Hi Is there a way to override this bug? the problem is I need a solution for the problem NOW and I cannot wait for the next version of wicket to come out... Thanks, Eyal. Erik van Oosten wrote: > > Hi Eyal, > > Let me translate Igor's reponse (which I agree is somewhat short for the > unini

Re: Form GET doesn't call onSubmit method

2008-10-05 Thread eyalbenamram
Hi Is there a way to override this bug? the problem is I need a solution for the problem NOW and I cannot wait for the next version of wicket to come out... Thanks, Eyal. Erik van Oosten wrote: > > Hi Eyal, > > Let me translate Igor's reponse (which I agree is somewhat short for the > unini

Re: Form GET doesn't call onSubmit method

2008-10-04 Thread eyalbenamram
Thanks for the explanation. I will do t tomorrow (today is our day off...:) Erik van Oosten wrote: > > Hi Eyal, > > Let me translate Igor's reponse (which I agree is somewhat short for the > uninitiated ;) ) > > "Quickstart" is the optimum way to start with Wicket. For more info see > http:

Re: Form GET doesn't call onSubmit method

2008-10-02 Thread Erik van Oosten
Hi Eyal, Let me translate Igor's reponse (which I agree is somewhat short for the uninitiated ;) ) "Quickstart" is the optimum way to start with Wicket. For more info see http://wicket.apache.org/quickstart.html. "A quickstart" is an as small as possible Wicket application that demonstrat

Re: Form GET doesn't call onSubmit method

2008-10-02 Thread eyalbenamram
Hi How? what is a quickstart? I am using wicket 1.3.4 is it still not fixed there? igor.vaynberg wrote: > > create a quickstart and attach it to a jira issue > > -igor > > On Thu, Oct 2, 2008 at 7:09 AM, eyalbenamram <[EMAIL PROTECTED]> > wrote: >> >> Hi, >> I have a form that overrides th

Re: Form GET doesn't call onSubmit method

2008-10-02 Thread Igor Vaynberg
create a quickstart and attach it to a jira issue -igor On Thu, Oct 2, 2008 at 7:09 AM, eyalbenamram <[EMAIL PROTECTED]> wrote: > > Hi, > I have a form that overrides the method: > >protected String getMethod() { > > return Form.METHOD_GET; > } > > When the f

Form GET doesn't call onSubmit method

2008-10-02 Thread eyalbenamram
Hi, I have a form that overrides the method: protected String getMethod() { return Form.METHOD_GET; } When the form is submitted, the onSubmit method is never called and I am routed to the home page instead of the location I specified. Any sugg