enabling and disabling the components

2012-08-09 Thread wicket user
with id ". Please advise how to handle my requirement. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/enabling-and-disabling-the-components-tp4651107.html Sent from the Users forum mailing list archive at

Re: enabling and disabling the components

2012-08-09 Thread wicket user
I was reading about setEnable(false), will that will be sufficient for my requirement ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/enabling-and-disabling-the-components-tp4651107p4651108.html Sent from the Users forum mailing list archive at Nabble.com

Re: enabling and disabling the components

2012-08-09 Thread Sebastien
ent for my > requirement ? > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/enabling-and-disabling-the-components-tp4651107p4651108.html > Sent from the Users forum mailing

Re: enabling and disabling the components

2012-08-09 Thread wicket user
hich is "test" and not the "test1" even though the getName is not null. PLease advise -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/enabling-and-disabling-the-components-tp4651107p4651112.html Sent from the Users forum mailing list archiv

Re: enabling and disabling the components

2012-08-10 Thread Sebastien
"); > } > > } > > > Calling from my Class > > add( new MyContainer("test")); > add( new MyContainer("test1", VO); > > > In html > > > > > > > > > > > > > But the problem is I am getting the first

Re: enabling and disabling the components

2012-08-13 Thread wicket user
add(new Label("planPrice", "")).setVisible(false); if the planPrice is getting populated then everything should be invisible that is working fine but in some scenarios only regular price is getting populated at that time nothing is displayed. Please Advi