ext2.0IE兼容chorme等浏览器

ext2.0IE兼容chorme等浏览器,在Ext.onReady(function(){ ……函数中增加如下内容,就可完美兼容

Ext.override(

Ext.menu.DateMenu,
{
render : function() {
Ext.menu.DateMenu.superclass.render.call(this);
if (Ext.isGecko || Ext.isSafari) {
this.picker.el.dom.childNodes[0].style.width = '178px';
this.picker.el.dom.style.width = '178px';
}
}
});

你可能感兴趣的:(ext2.0,IE兼容chorme等浏览器)