答案 0 :(得分:0)
查看此代码。它按预期工作。
Ext.onReady(function(){
new Ext.Window({
title: 'Accordion Window',
width: 200,
height: 200,
layout: 'accordion',
border: false,
layoutConfig : {
animate : true
},
items : [{
xtype: 'panel',
title: 'Plain Panel',
html: 'Plain Panel 1'
},{
xtype: 'panel',
title: 'Plain Panel',
html: 'Plain Panel 2'
}]
}).show();
});