Threaded View
-
22 May 2009 5:21 AM #1
[CLOSED][3.??] Bug + fix for Ext.ListView and IE6
[CLOSED][3.??] Bug + fix for Ext.ListView and IE6
IE6 errors out if you resize the listview to a size smaller then the containing items. The following fixes it:
The problem is that setting bdp.style.height to a negative height results in an errorCode:/* Fix bug in Ext.ListView with ie6 */ Ext.override(Ext.ListView, { onResize : function(w, h){ var bd = this.innerBody.dom; var hd = this.innerHd.dom if(!bd){ return; } var bdp = bd.parentNode; if(typeof w == 'number'){ var sw = w - this.scrollOffset; if(this.reserveScrollOffset || ((bdp.offsetWidth - bdp.clientWidth) > 10)){ bd.style.width = sw + 'px'; hd.style.width = sw + 'px'; }else{ bd.style.width = w + 'px'; hd.style.width = w + 'px'; setTimeout(function(){ if((bdp.offsetWidth - bdp.clientWidth) > 10){ bd.style.width = sw + 'px'; hd.style.width = sw + 'px'; } }, 10); } } /* If height is negative IE6 will give an error 'invalid argument' */ if(typeof h == 'number'){ var height = h - hd.parentNode.offsetHeight; if (height < 0) { height = 0; } bdp.style.height = height + 'px'; } } });
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote