锚点布局中的空白空间

时间:2014-09-18 09:22:54

标签: extjs extjs4

有没有办法让空格成为锚布局?

在添加组件之前,我想要一个空的空间。注意:我不能使用边距。

layout: {
    type: 'anchor'
},
items : [

    {
        xtype: 'hidden',
        anchor: '50% -2'
    }

}

我也尝试过:

 {
      xtype : 'label',
      text  : '',
      labelSeparator: '',
      anchor: '50% -2'
 },

1 个答案:

答案 0 :(得分:0)

这最终对我有用:

{
   xtype: 'label',
   html: ' '
},