obj.onHeaderMouseOver
In some cases - extended grid 2.0 - I do not want the onmouseover effect on a header (when a grid or (some) columns are not sortable).
One solution is to change the css. But I also tried javascript. I could not find 'the' solution.
obj.onHeaderClicked=function(event,index){return true;} works (for a onmouseclick), but an obj.onHeaderMouseOver=function(event,index){event.cancelBubble=true;return true;} doesn't work.
This one works, obviously because the onHeaderMouseOver has an error-trap: the 'AW.header.ignoseMouse' is not valid, but this does want I want:
obj.onHeaderMouseOver=function(){AW.header.ignoreMouse=true;};
Is there a 'cleaner' coding for this? How can I override/change or detach the AW default onHeaderMouseOver?
One solution is to change the css. But I also tried javascript. I could not find 'the' solution.
obj.onHeaderClicked=function(event,index){return true;} works (for a onmouseclick), but an obj.onHeaderMouseOver=function(event,index){event.cancelBubble=true;return true;} doesn't work.
This one works, obviously because the onHeaderMouseOver has an error-trap: the 'AW.header.ignoseMouse' is not valid, but this does want I want:
obj.onHeaderMouseOver=function(){AW.header.ignoreMouse=true;};
Is there a 'cleaner' coding for this? How can I override/change or detach the AW default onHeaderMouseOver?
Eric Aarts
October 24,