That will probably work, but I was hoping to be able to hook into the "loading" events somehow.
There is another requirement to change the browser statusbar text when something is loading, and hooking into the events is the only way this could be achieved I think.
Changing the mouse pointer when showing <bjs:loadingMessage>
11 May, 2007 - 15:57 — AnonymousHi David,
Please see code below,
<bjs:message for="address" errorClass="error" tooltip="true" style="cursor: pointer;" />
Hope this helps,
-Senaka
Changing the mouse pointer when showing <bjs:loadingMessage>
14 May, 2007 - 08:53 — AnonymousThat doesn't help for what I was asking.
I need to change the mouse pointer whenever the LOADING message is visible...i.e. when there is communication between the client and server.
Changing the mouse pointer when showing <bjs:loadingMessage>
16 May, 2007 - 18:29 — AnonymousOne trick you could do is load a custom image (size set to the screen) and set opacity,
Please see the example below.
<div style="position:absolute;left:1px;top:1px; cursor: crosshair;">
<img src="flowers.jpg" width="1600" height="840" alt="klematis" style="-moz-opacity:0.0;filter:alpha(opacity=0)" />
</div>
</s:loading>
Hope this helps.
-Senaka
Changing the mouse pointer when showing <bjs:loadingMessage>
17 May, 2007 - 09:01 — AnonymousThat will probably work, but I was hoping to be able to hook into the "loading" events somehow.
There is another requirement to change the browser statusbar text when something is loading, and hooking into the events is the only way this could be achieved I think.
Thanks.
cursor:wait
4 June, 2008 - 15:41 — JbuzzerI'm still a newbie with backbase but the following works for me:
<div id="loadingMessage" class="textBackground">
<img src="resources/media/loading.gif" />
<span style="font-weight:400">Please wait...</div>
</div>
</div>