是否可以将标签放入actionColumn?

时间:2015-02-10 15:52:49

标签: extjs extjs5

目前我似乎可以添加按钮。 无论如何,我想要实现这样的目标:

a label |button|

会有可能吗?

1 个答案:

答案 0 :(得分:1)

最好的方法是使用容器

这是一个例子:

var container = {
xtype  : 'container',
layout : 'hbox',
style  : 'margin-bottom: 5px;',
items  : [
   {
      xtype: 'label',
     text: 'a Label',
    },
    {
        xtype : 'container',
        width : 85,
        items : {
            xtype : "button",
            text  : "button",
            width : 70              
        }
    }       
]};

希望这项工作。