Re: [Wicket-user] execute long running ajax task after page is loaded

2007-07-26 Thread jonaqua
Thanks Martijn, I haven't attempted this yet - I've been working on other things (since functionally this part of my app works fine). When I revisit this I'm sure I'll have some questions for you :) Thanks again Martijn Dashorst wrote: > > Create a processing thread, and dispatch it. Have th

Re: [Wicket-user] execute long running ajax task after page is loaded

2007-07-21 Thread Martijn Dashorst
Create a processing thread, and dispatch it. Have the thread update some progress object that you can get access to, and query that progress with a label (or something more fancy like a progress bar). Something like: Link() { onclick() { create thread, start it } } add(new Label("progress",

[Wicket-user] execute long running ajax task after page is loaded

2007-07-20 Thread jonaqua
The wicket ajax link examples are great. The functionality I need is very similar to the third link example here: http://www.wicket-library.com/wicket-examples/ajax?wicket:bookmarkablePage=:wicket.examples.ajax.builtin.LinksPage ( ajax link with a busy indicator. the server will deliberately pa