Ticket #5977: 5977.patch
| File 5977.patch, 0.6 kB (added by benschell, 11 months ago) |
|---|
-
dojox/grid/_grid/builder.js
322 322 if(c && !this.canResize(e)){ 323 323 c = 'not-allowed'; 324 324 } 325 e.sourceView.headerNode.style.cursor = c || ''; //'default'; 325 if(dojo.isIE){ 326 var t = e.sourceView.headerNode.scrollLeft; 327 e.sourceView.headerNode.style.cursor = c || ''; //'default'; 328 e.sourceView.headerNode.scrollLeft = t; 329 }else{ 330 e.sourceView.headerNode.style.cursor = c || ''; //'default'; 331 } 326 332 if (c) 327 333 dojo.stopEvent(e); 328 334 },