Using forms defined in panels

2015-02-26 Thread Andrew Hall
Hi all, I have a newbie question ... In the free online guide for Wicket - best practices section,2 listings are provided as examples of how to encapsulate components in panels: (http://wicket.apache.org/guide/guide/bestpractices.html#bestpractices_1) Listing 3:// Good component public class

Re: Using forms defined in panels

2015-02-26 Thread Sven Meier
Hi, the easiest solution is declare regModel as final, then you can do something as follows: form.add(new SubmitButton(register) { public void onSubmit() { // do something regModel.getObject().getUserName(); } }); Note that

Using Forms

2008-01-14 Thread j.bokobza
Hello I'm new with wicket and I'm looking for samples of basics forms. I didn't find how to retrieve datas (variables) sent by a wicket form with method setResponsePage. Can anyone help me ? Thanks. - To unsubscribe, e-mail:

Re: Using Forms

2008-01-14 Thread wicket user
Hi, Take a look at the FormInput example in wicket example projects. Wicket examples have everything to get you started. Regards Dipu On Jan 14, 2008 8:58 AM, j.bokobza [EMAIL PROTECTED] wrote: Hello I'm new with wicket and I'm looking for samples of basics forms. I didn't find how to