Hi,
I am trying to use a custom URL mouse cursor on some ListGrid cells. I am overriding the getCellCSSText method something like this:
In this example, using one of the standard CSS cursors always works as shown by the line
But the custom cursor line just above only works in IE10. In other browsers I've tested it gets ignored. (Some browsers prefer PNG over CUR cursor files, but it hasn't made a difference.) When inspecting the HTML DOM in Chrome or IE7, I see attributes on the TD like
I've also tried providing a CSS class by overriding getBaseStyle and getCellStyle with the same result. The standard cursor works, but the custom URL cursor doesn't.
SmartClient versionNumber : "v9.0p_2013-11-03"
Thanks for any help you can provide.
I am trying to use a custom URL mouse cursor on some ListGrid cells. I am overriding the getCellCSSText method something like this:
Code:
getCellCSSText : function(record, rowNum, colNum) { if (colNum==2) return "cursor: URL('/path/to/cursor.cur');"; if (colNum==3) return "cursor: move;"; }
Code:
if (colNum==3) return "cursor: move;";
Code:
path="" and cursor.cur=""
SmartClient versionNumber : "v9.0p_2013-11-03"
Thanks for any help you can provide.
Comment