Hi,

I have a simple example using AjaxDirectLink to partially update the dom
(see attached).  You click a link
and elsewhere on the page the date is refreshed.  The problem is that as
part of processing the response,
my anchor tag is slammed with the style "cursor:auto", which in FireFox
is rendered as an I-Beam (text insertion point).  So when the page first
loads I get the standard link pointer, but the minute I fire the
AjaxDirectLink
the cursor on the link becomes the I-Beam, which is very odd.

I can see in tacos.js where the cursor is changed to a wait during the
call, but instead of unsetting the cursor when it is done, it sets it to
cursor:auto.

Any help would be greatly appreciated.


gt


<html jwcid="@Shell" title="Test">
    
    <script type="text/javascript"> 
        djConfig = { isDebug: false, 
                     baseRelativePath: "js/dojo/", 
                     preventBackButtonFix: false };
    </script>
    <script type="text/javascript" src="js/dojo/dojo.js"></script>

    <body jwcid="@Body" >
        
        <div jwcid="@Any" id="testarea">
            <span jwcid="@Insert" value="ognl:new java.util.Date()"/>
        </div>

        <br/>

        <span jwcid="@tacos:AjaxDirectLink"
updateComponents="ognl:{'testarea'}"
            listener="listener:actionClicked">Update Time</span>
        
    </body>
    
</html>



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Tacos-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tacos-devel

Reply via email to