Re: Busy indicator delay with IAjaxIndicatorAware?

2017-04-04 Thread jonscher
Hi Lasse, I have the same probleme. Did you found a solution ? Can you tell me which solution did you take ? Thank you very much. Jonathan -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Busy-indicator-delay-with-IAjaxIndicatorAware-tp4675678p4677604.html Sent

Re: Busy indicator delay with IAjaxIndicatorAware?

2016-10-06 Thread Lars Törner
Thanks, I'll take a look at your suggestions! Lasse 2016-10-06 11:02 GMT+02:00 Martin Grigorov : > Hi Lars, > > At Apache Isis we use the custom solution for this: > https://github.com/apache/isis/blob/master/core/viewer- >

Re: Busy indicator delay with IAjaxIndicatorAware?

2016-10-06 Thread Rob Audenaerde
Hi Lars, I use a CSS animation for this: .wicket-ajax-indicator { visibility:hidden; animation: appear 0s ease-in 0.5s forwards; } -Rob On Thu, Oct 6, 2016 at 10:58 AM, Lars Törner wrote: > Hi everyone! > > Is there a best practice in wicket for adding a busy indicator

Re: Busy indicator delay with IAjaxIndicatorAware?

2016-10-06 Thread Martin Grigorov
Hi Lars, At Apache Isis we use the custom solution for this: https://github.com/apache/isis/blob/master/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/jquery.isis.wicket.viewer.js#L88-L96 At my current project I've used the same approach but directly with jQuery APIs