Re: [Wicket-user] Ajax Indicators for custom components

2007-03-08 Thread Igor Vaynberg
the behavior checks if it or the component it is attached to implement IAjaxIndicatorAware. what it then does is display:; to show whatever dom element has the id returned by IAjaxIndicatorAware when the ajax request is initiated, and then display:none; when the ajax request is finished. also see

[Wicket-user] Ajax Indicators for custom components

2007-03-08 Thread Apaar Trivedi
Hey all, I've got a custom component (drop down of AjaxLinks) which extends Panel. I would like for this component to be able to use an ajax indicator. How can I do this? Can I just have that component implement IAjaxIndicatorAware? When I use the indicatorAppender as part of this, it does

[Wicket-user] Ajax Indicators for custom components

2007-03-08 Thread Apaar Trivedi
Hey all, I've got a custom component (drop down of AjaxLinks) which extends Panel. I would like for this component to be able to use an ajax indicator. How can I do this? Can I just have that component implement IAjaxIndicatorAware? When I use the indicatorAppender as part of this, it does