In data domenica 3 febbraio 2013 13:17:13, Andrea Del Bene ha scritto:
> To clarify a bit more, you should end up writing something like:
> 
> <form  wicket:id="form">
>    <input type="text"   wicket:id="formcomponentA" />
>    <textarea  wicket:id="formcomponentB">...</textarea>
> </form>
> 
>   and Java code
> 
> Form form = new Form("form");
> 
> form.add(new FormComponentA("formcomponentA"));
> form.add(new FormComponentB("formcomponentB"));

Thanks, now it seems clear. Last doubt, what if I have two or more texts in 
either FormComponent? Shouls I repeat wicket:id="FormComponentA" for each one?

Reply via email to