Re: [Wicket-user] Problem with RepeatingView in trunk

2006-10-05 Thread Johan Compagner
what you do is illegal it shouldnt also work in 1.2what you should do is: RepeatingView r=new RepeatingView();WebMarkupContainer item=new WebMarkupContainer(r, r.newChildId());new Label(item, view..new Label(item, create,...johan On 9/27/06, Alberto Bueno [EMAIL PROTECTED] wrote: Hi,In Wicket

[Wicket-user] Problem with RepeatingView in trunk

2006-09-27 Thread Alberto Bueno
Hi, In Wicket 1.2 I had this code: RepeatingView r = new RepeatingView(form); r.add(new Label(view,view)); r.add(new Label(create,create)); add(r); Now in trunk I have: RepeatingView r = new RepeatingView(form, toolbar); new Label(r,