Re: Event or way to check when a component has visibility change

2011-09-02 Thread Igor Vaynberg
vent() { this is visible } > > ... > > Onevent2() { this is now being changed to not visible } > > -Original Message- > From: Martin Grigorov [mailto:mgrigo...@apache.org] > Sent: Friday, September 02, 2011 8:45 AM > To: users@wicket.apache.org > Subject: Re: Event

RE: Event or way to check when a component has visibility change

2011-09-02 Thread Brown, Berlin [GCG-PFS]
[mailto:mgrigo...@apache.org] Sent: Friday, September 02, 2011 8:45 AM To: users@wicket.apache.org Subject: Re: Event or way to check when a component has visibility change onBeforeRender() is not called for invisible components On Fri, Sep 2, 2011 at 2:41 PM, Brown, Berlin [GCG-PFS] wrote

Re: Event or way to check when a component has visibility change

2011-09-02 Thread Martin Grigorov
onBeforeRender() is not called for invisible components On Fri, Sep 2, 2011 at 2:41 PM, Brown, Berlin [GCG-PFS] wrote: > With the 1.4 release of wicket, is there a way to determine when a > component has changed visibility.  Mainly from false to true visibility. > > I can use onBeforeRender or on

Event or way to check when a component has visibility change

2011-09-02 Thread Brown, Berlin [GCG-PFS]
With the 1.4 release of wicket, is there a way to determine when a component has changed visibility. Mainly from false to true visibility. I can use onBeforeRender or onConfigure to determine when the component is being rendered. onAfterRender will get called after it is rendered but the comp