Ticket #5977: 5977.patch

File 5977.patch, 0.6 kB (added by benschell, 11 months ago)
  • dojox/grid/_grid/builder.js

     
    322322                if(c && !this.canResize(e)){ 
    323323                        c = 'not-allowed'; 
    324324                } 
    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                } 
    326332                if (c) 
    327333                        dojo.stopEvent(e); 
    328334        },