我正在使用 Extjs 6.5.3。
我想创建自定义布局或配置,这样当我在我的文件中使用它时,所有面板都将变得可折叠。
我知道 ExtJS 有 Accordion 布局,通过使用它我们可以使所有面板可折叠,但是即使我们添加了相同的配置,Accordion 布局也会同时打开多个面板multi: true
。它不允许同时展开和关闭多个面板。
下面是不允许多个面板同时打开的示例,甚至添加了multi:true
Ext.create('Ext.panel.Panel', {
title: 'Accordion Layout',
width: 300,
height: 300,
defaults: {
// applied to each contained panel
bodyStyle: 'padding:15px'
},
layout: {
// layout-specific configs go here
type: 'accordion',
titleCollapse: false,
animate: true,
multi: true,
activeOnTop: true
},
items: [{
title: 'Panel 1',
html: 'Panel content!'
}, {
title: 'Panel 2',
html: 'Panel content!'
}, {
title: 'Panel 3',
html: 'Panel content!'
}],
renderTo: Ext.getBody()
});
我也知道通过使用 vbox 布局,我们可以使面板像下面那样可折叠
Ext.create('Ext.panel.Panel', {
title: 'Accordion Layout',
width: 300,
height: 300,
defaults: {
// applied to each contained panel
bodyStyle: 'padding:15px',
collapsible: true
},
layout: {
// layout-specific configs go here
type: 'vbox'
},
items: [{
title: 'Panel 1',
html: 'Panel content!'
}, {
title: 'Panel 2',
html: 'Panel content!'
}, {
title: 'Panel 3',
html: 'Panel content!'
}],
renderTo: Ext.getBody()
});
但我想将它作为配置或自定义布局,以便我可以在任何地方重用它。为此,我没有找到任何方法。