> how can I force from a middle of the loop, which may run up to few > minutes to update a component's value? > I am manipulating a lot of files and I would like to let the user know > how much of the processing is already done. > I would like to start processing the files when user reaches certain > page and on this same page I want to display statistics of the process. > As an example I tried to use a Clock from your ajax example, but I > cannot manage it to update during running of the loop. I thought of > achieving it somehow with threads, is this right direction? > What is the correct way to do it?
Check out org.apache.wicket.extensions.ajax.markup.html.form.upload.UploadProgressBar. It's not exactly what you want, but it should give you some ideas. Eelco --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
