ExtJS4工具栏中新按钮的位置

时间:2014-05-12 16:34:45

标签: extjs

我正在为htmleditor工具栏添加一个按钮。 E.g:

this.cmp.getToolbar().add([
    {
        iconCls: 'custom-btn-clear',
        handler: this.remove_all_tags,
        scope: this,
        overflowText: 'Remove formatting'
    }
]);

我需要把它放在第一个位置(从左侧开始)。如何指定按钮位置?

1 个答案:

答案 0 :(得分:0)

使用insert方法。

myToolbar.insert(0, {});