我在这个问题上工作了几个小时,但我没有找到任何答案。我有一个带有按钮和菜单的工具栏:
new Ext.Toolbar({
items: [
{
text: 'button1',
toggleGroup: "draw",
allowDepress: false,
pressed: true,
},
{
text: 'button2',
toggleGroup: "draw",
allowDepress: false,
pressed: false,
},
{
text: 'menu',
enableToggle: true,
menu: {
items: [
{
text: 'menuButton1',
toggleGroup: "draw",
allowDepress: false,
},
{
text: 'menuButton2',
toggleGroup: "draw",
allowDepress: false,
}
]
}
}
]
})
(这只是一个非常接近我的代码的例子)
问题:切换不起作用。我只想选择 4 个按钮中的一个。使用 button1 和 button2 进行切换是有效的,但不是使用菜单按钮。问题出在哪里?