0
我在這個問題上工作了幾個小時,但我沒有找到任何答案。 我有帶按鈕的工具欄和菜單:與切換菜單與分機JS
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個按鈕中的一個。與按鈕1和按鈕2切換正在工作,但不是與菜單按鈕。哪裏有問題?
我認爲你不能切換菜單項。 – A1rPun 2013-03-15 13:48:01