手風琴佈局的面板與另一個項目包含在vbox中。ext js 4.2 vbox中的手風琴佈局
我有一個2周的煩惱:
- 當我試圖設置flex與它會導致錯誤「[E]佈局運行失敗」手風琴佈局面板
- 當高度由constand固定它不能按預期工作:第一個面板不會摺疊。
這裏是例子的代碼:
Ext.create('Ext.panel.Panel', {
title: 'Accordion Layout',
width: 300,
height: 500,
layout: 'vbox',
items: [{
xtype: 'datefield'
}, {
defaults: {
// applied to each contained panel
bodyStyle: 'padding:15px'
},
layout: {
// layout-specific configs go here
type: 'accordion',
titleCollapse: true,
animate: true
},
items: [{
title: 'Panel 1',
html: 'Panel content 1!'
}, {
title: 'Panel 2',
html: 'Panel content 2!'
}, {
title: 'Panel 3',
html: 'Panel content 3!'
}],
}],
renderTo: Ext.getBody()
});
謝謝。有用。 – Damask