【发布时间】:2016-02-02 09:48:35
【问题描述】:
我有一个可折叠面板,当我在 IE (v 11)/Edge 中打开它时,它又会折叠起来。该代码在 Chrome、Firefox 中运行良好。
我创建了一个样例,你可以在sencha fiddle试试:
Ext.application({
name : 'Fiddle',
launch : function() {
this.container = new Ext.panel.Panel({
width: '100%',
height: 500,
title: 'Main',
layout: 'border',
renderTo: Ext.getBody()
});
this.container.add({
xtype:'panel',
region: 'east',
width: 300,
collapsible: true,
collapsed: true,
title: 'Collapsible'
});
}
});
【问题讨论】:
标签: javascript internet-explorer extjs