vote up 0 vote down star

Hello. I have an ExtJS button like this:

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'}
        ]
    })
})

His state will be pressed at a time and I want to know how can I unpress it when I want to from script.

Thank you.

flag

how does an unpressed split button look like? – Lukman Sep 17 at 0:37
It looks like his initial state. – Manny Calavera Sep 17 at 10:03

2 Answers

vote up 1 vote down check

Call toggle() on the button:

http://www.extjs.com/deploy/ext/docs/output/Ext.SplitButton.html

If a state it passed, it becomes the pressed state otherwise the current state is toggled.

link|flag
Thank you for your answer. – Manny Calavera Sep 17 at 10:04
vote up 0 vote down

Question is vague, and I'm no ExtJS animal.

That said:

What happens is you get a handle of the button and fire the mouseup event?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.