Re: Updating Form TextField Value

2008-12-03 Thread tim532
That was exactly it. Thanks for that explanation! Cheers, Tim Jeremy Thomerson-5 wrote: > > It doesn't have to do with your html input vs. button. It's because > default > form processing is turned off, the form model doesn't fire that it was > changed, so the model doesn't go back to your g

Re: Updating Form TextField Value

2008-12-03 Thread Jeremy Thomerson
It doesn't have to do with your html input vs. button. It's because default form processing is turned off, the form model doesn't fire that it was changed, so the model doesn't go back to your getName() method to get it's value. You can add this in your button onSubmit: getForm().modelChanged();

RE: Updating Form TextField Value

2008-12-03 Thread Dane Laverty
I think you'll want to use the tag rather than the mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2008 4:27 PM To: users@wicket.apache.org Subject: Updating Form TextField Value Hopefully this is a simple question with a simple answer... For reasons I can't quite grasp yet, the button t