Re: display busy indicator while external image is fetched

2010-01-14 Thread Martijn Dashorst
img src=http://example.com/images/someimage.jpg; style=background-image:url('style/spinner.gif'); / Assuming the local machine is faster than the external server, the spinner should be visible while the external image loads. Martijn On Wed, Jan 13, 2010 at 8:10 PM, Christoph Grün

Re: display busy indicator while external image is fetched

2010-01-14 Thread Pedro Santos
Nice! I'm planing to show an busy indicator too, and the idea I had so far was: image = new Image(); code for show some busy indicator; image.onload = function(){ code for stop the busy indicator} image.src = 'path'; now I change my mind. On Thu, Jan 14, 2010 at 10:48 AM, Martijn Dashorst

RE: display busy indicator while external image is fetched

2010-01-13 Thread wic...@geofflancaster.com
use AjaxLazyLoad. Should be pretty straight forward. There are a ton of examples online Original Message: - From: Christoph Grün chris...@gmx.at Date: Wed, 13 Jan 2010 20:10:22 +0100 To: users@wicket.apache.org Subject: display busy indicator while external image is fetched Hi,