在ExtJS 4.2.2中。我有一个像这样的hbox容器:
Ext.create('Ext.Panel', {
width: 500,
height: 300,
title: "HBoxLayout Panel",
layout: {
type: 'hbox',
align: 'stretch'
},
renderTo: document.body,
items: [{
xtype: 'panel',
title: 'Inner Panel One',
flex: 2
},{
xtype: 'panel',
title: 'Inner Panel Two',
flex: 1
},{
xtype: 'panel',
title: 'Inner Panel Three',
flex: 1
}]
});
这只是文档中的示例。但我希望三个不同面板之间的垂直线可以拖动,因此用户可以调整每个面板的大小。
感谢您的帮助!
答案 0 :(得分:5)