Re: How take a field to a form so that it can manage within submit on the same form?

2008-07-31 Thread alex2008
this message in context: http://www.nabble.com/How-take-a-field-to-a-form-so-that-it-can-manage-within-submit-on-the-same-form--tp18760796p18768890.html Sent from the Wicket - User mailing list archive at Nabble.com. - To

Re: How take a field to a form so that it can manage within submit on the same form?

2008-07-31 Thread Bruno Borges
lex2008 <[EMAIL PROTECTED]> wrote: > > How take a field to a form so that it can manage within submit on the same > form? > > Form form=new Form("f"); >form.add(new > RequiredTextField("integerInRangeProperty").add(NumberValidator.range(0, > 100))

How take a field to a form so that it can manage within submit on the same form?

2008-07-31 Thread alex2008
How take a field to a form so that it can manage within submit on the same form? Form form=new Form("f"); form.add(new RequiredTextField("integerInRangeProperty").add(NumberValidator.range(0, 100))); form.add(new Button("execute")