I guess this was not added to the CSOM. Anyone had any luck implementing something that can tell when the mouse is hovering over a node? I need to trigger a javascript function when a user hovers on a node.
I haven't been brave enough to switch over to 08 yet. my code is running in infra v7.2 1069 vs ver 8(2005)
I excluded the modified js file from my project re-built and yes i recived a js error.
Ok well that shouldn't matter anyways b/c those alert dialogs should be popping up. I have told you that I have implemented my events those are containing the alerts now on the control that contains the webtree. It's something to do with the control I believe that is not allowing me to give it that js file to go off of. I am using Infra. 2008 CLR 3.5
function igtree_mouseover(evnt,tn)
Inside this if statement
if(igtxt!=null && igtxt.length>0)
put a function call that acts as a hook to the mouseover event.
MyMouseOverFunction(tn, eNode.id);
the funciton this call is for should be in the script section of the page containing the webtree
the fhl(function header line) should look like this
function MyMouseOverFunction(tn, id){
//add code that you want to exicute on node hover here
}
Yes this code is from my modified js file. I mean I have no idea why it will not pick up my js file and I have another question. Wouldn't the user control that contains the webtree give me some kind of js error if the file was not found by the JavaScriptFileName?????