Extjs 5 将手风琴按钮移动到标题左侧

Extjs 5 move accordion Button to the left of title

小问题我似乎无法让手风琴按钮从右向左移动,我想知道是否有特定的方法可以做到这一点我已经检查了文档但似乎无法做到这一点。我已经添加了一些代码,但由于缺乏声誉,我无法添加图像。

[编辑]

我想把手风琴按钮移到标题前。

{
                          xtype: "panel",
                          id: "calendarLeftMenu",
                          layout: {
                              type: 'accordion',
                              titleCollapse: true,
                              animate: false,
                              activeOnTop: false,
                              multi: true,
                              buttonAlign:"left"
                          },
                          items: [
                            {
                                xtype: "panel",
                                title: "Releases",
                                left: "0px",
                                buttonAlign:"left",
                                id: "release-panel",
                                style: "padding-left: 1px;",
                                listeners: {
                                    beforeexpand: {
                                        fn: function () {
                                            if (Ext.get('release-on-btn').dom.className === 'switch-small-off-icon') {
                                                return false;
                                            }
                                        }
                                    }
                                },
                                tools: [
                                  {
                                      type: 'mytool',
                                      id: 'release-collapse-btn',
                                      renderTpl: releaseTabSwitcher,
                                      width: 60,
                                      region: "west",
                                      weight: 100,
                                  }
                                ]

想通了。

                                header:{
                                    titlePosition: 1
                                },