快速问题我似乎无法让手风琴按钮从右向左移动,并且想知道是否有一种特定的方式来做这件事我已经检查了文档但似乎无法做到。我添加了一些代码,由于缺乏声誉,我无法添加图片。
[编辑]
我想在标题之前移动手风琴按钮。
{
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,
}
]
答案 0 :(得分:2)
想出来。
header:{
titlePosition: 1
},