ExtJS hbox可拖动垂直线

时间:2015-07-26 10:32:55

标签: javascript extjs containers hbox

在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
  }]
});

这只是文档中的示例。但我希望三个不同面板之间的垂直线可以拖动,因此用户可以调整每个面板的大小。

感谢您的帮助!

1 个答案:

答案 0 :(得分:5)

您正在寻找Splitter。在您的面板之间添加:

{xtype: 'splitter'}

示例:https://fiddle.sencha.com/#fiddle/r4h