在扩展按钮中显示所选值

时间:2018-06-25 02:16:22

标签: javascript extjs

在此示例中,即

 Ext.create('Ext.button.Split', {
    renderTo: Ext.getBody(),
    text: 'Options',
    // handle a click on the button itself
    handler: function() {
        alert("The button was clicked");
    },
    menu: new Ext.menu.Menu({
        items: [
            // these will render as dropdown menu items when the arrow is clicked:
            {text: 'Item 1', handler: function(){ alert("Item 1 clicked"); }},
            {text: 'Item 2', handler: function(){ alert("Item 2 clicked"); }}
        ]
    })
});

如何动态显示按钮中的选择? 谢谢!

1 个答案:

答案 0 :(得分:1)

您必须到祖父母那里并设置文本,这是小提琴:FIDDLE