我有一个这样的ExtJS按钮:
new Ext.SplitButton({
text: 'Index',
iconCls: 'index',
scale: 'large',
iconAlign: 'left',
cls: 'header-item',
handler: leftPanelNav, // handle a click on the button itself
menu: new Ext.menu.Menu({
items: [
// these items will render as dropdown
// menu items when the arrow is clicked:
{text: 'Item 1'},
{text: 'Item 2'}
]
})
})
他的状态将会被按下,我想知道如果我想从剧本中取消它,我该如何解压。
谢谢。
答案 0 :(得分:12)
按钮上的toggle()
:
http://www.extjs.com/deploy/ext/docs/output/Ext.SplitButton.html (死链接)
http://dev.sencha.com/playpen/docs/output/Ext.SplitButton.html
如果它通过的状态,它 否则就会成为压迫状态 当前状态被切换。