Re: Annoying enclosure bug introduced in Wicket 1.3.3

2008-05-21 Thread Edvin Syse
Confirmed :) It works with 1.3-SNAPSHOT -- Edvin Igor Vaynberg skrev: already fixed in trunk afair -igor On Tue, May 20, 2008 at 3:14 PM, Edvin Syse <[EMAIL PROTECTED]> wrote: Hi, I think this is my third bug found in the enclosure system :) Simple quickstart: HomePage.java: public cla

Re: Annoying enclosure bug introduced in Wicket 1.3.3

2008-05-20 Thread Igor Vaynberg
already fixed in trunk afair -igor On Tue, May 20, 2008 at 3:14 PM, Edvin Syse <[EMAIL PROTECTED]> wrote: > Hi, > > I think this is my third bug found in the enclosure system :) > > Simple quickstart: > > HomePage.java: > > public class HomePage extends WebPage { >Boolean show = true; >

Annoying enclosure bug introduced in Wicket 1.3.3

2008-05-20 Thread Edvin Syse
Hi, I think this is my third bug found in the enclosure system :) Simple quickstart: HomePage.java: public class HomePage extends WebPage { Boolean show = true; public HomePage() { add(new RadioChoice("show", new PropertyModel(this, "show"), Arrays.asList(true, false)) {