标签: extjs
我正在为htmleditor工具栏添加一个按钮。 E.g:
this.cmp.getToolbar().add([ { iconCls: 'custom-btn-clear', handler: this.remove_all_tags, scope: this, overflowText: 'Remove formatting' } ]);
我需要把它放在第一个位置(从左侧开始)。如何指定按钮位置?
答案 0 :(得分:0)
使用insert方法。
myToolbar.insert(0, {});