Re: [Wicket-user] Form submission and model updating

2006-07-29 Thread Tymur Porkuyan
Thanks, the framework really works the most convenient way, even if it is not always obvious :) - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your

Re: [Wicket-user] Form submission and model updating

2006-07-25 Thread Eelco Hillenius
You can get that temporary data with FormComponent#getInput or #getInputAsArray. That data will be used to render the form components again. But if you *really* want to update some of you model values in-between, you have to customize your form or some of your components. E.g. create a custom form

Re: [Wicket-user] Form submission and model updating

2006-07-25 Thread Johan Compagner
All user input data is kept in the form/formcomponent. It is just not pushed to the client.So one mistake will not result in loosing all the data.Only if you reset the model object from the other side the entered data will be thrown away and the new model data from the backend is used.johanOn 7/25/

[Wicket-user] Form submission and model updating

2006-07-25 Thread Tymur Porkuyan
Is it possible to update models even if form validation failed? I have a large form and I don't want user to lose all entered data just because of one mistake. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceF