【发布时间】:2011-02-19 14:24:32
【问题描述】:
我的以下 Extjs 代码在 FF 中运行良好,但在 IE 中,当西部地区发生溢出时,不会出现垂直滚动条。怎么了?
Ext.onReady(function(){
var viewport = new Ext.Viewport({
layout:'border',
items:[{
region:'west',
id:'west-panel',
split:true,
width: 250,
minSize: 175,
maxSize: 400,
collapsible: false,
margins:'5 0 5 5',
cmargins:'5 5 5 5',
border: false,
autoScroll:true,
layout:'fit',
layoutConfig:{
autoWidth:false
},
contentEl:layers
},{
region:'center',
margins:'5 5 5 0',
layout:'column',
autoScroll:false,
border: false,
contentEl:main
}]
});
});
【问题讨论】:
标签: extjs