Hello, I have a main Panel implementing IAjaxIndicatorAware . The panel contains multiple AjaxTabbedPanel. and in one tab I have a form with a list of items and an AjaxButton that I use to trigger a download based on selected items. Now the content of the AjaxButton looks like this: AbstractResourceStreamWriter resourceStream = new AbstractResourceStreamWriter() { @Override public void write(OutputStream output) throws IOException { writeFileContent(output); }; ResourceStreamRequestHandler handler = new ResourceStreamRequestHandler(resourceStream, "Package.zip") getRequestCycle().scheduleRequestHandlerAfterCurrent(handler);
It seems that scheduleRequestHandlerAfterCurrent leaves the busy indicator spinning forever after the download of the file gets completed. Is there anything that I am missing or is this a bug? I'm using Wicket 7.3 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/IAjaxIndicatorAware-busy-indicator-running-forever-tp4677251.html Sent from the Users forum mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org