Hello Kirk,

im looking for a solution you suggested
http://www.nabble.com/How-can-i-present-a-busy-component-to14462974.html
Click here 

I tried your link but my cursor is not changing. Can you help me out here? I
use FF 2.0.0.11

ProgressPointerAjaxFallbackLink aFogLink = new
ProgressPointerAjaxFallbackLink("aFogLink") {
  @Override
  public void onClick(AjaxRequestTarget pTarget) {
    new Thread() {
    @Override
    public void run() {
      synchronized (this) {
        try {
          System.out.println("Start");
          wait(8000);
          System.out.println("Stop");
        } catch (InterruptedException e) {
          e.printStackTrace();
        }
      }
    }
  }.start();
    System.out.println("target added");
    pTarget.addComponent(this);
  }
};
aFogLink.setOutputMarkupId(true);
add(aFogLink);

-- 
View this message in context: 
http://www.nabble.com/suggesting-alternative-to-IndicatingAjaxFallbackLink-%3Eclass-for-just-changing-pointer-cursor-tp14400523p14478193.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to