Hourglass

Hi,

What is the recommended way of displaying an hourglass or something similar while processing?

Thanks,

Ken

Hello,


you can use jquery/javascript in the asm block:

$(body).css("cursor","progress"); 

and back to normal:

$(body).css("cursor","default"); 


Thanks.

do I need to do something to get 'body' defined? 

Have you included the jQuery JS lib reference?