0

我是 Ext Js 的新手。我正在尝试在工具栏中创建菜单按钮和拆分按钮。这是我的代码

Ext.onReady(function(){
    new Ext.Toolbar({
        renderTo: document.body,
        items: [{
            xtype: 'tbbutton',
            text: 'Button'
        },{
            xtype: 'tbbutton',
            text: 'Menu Button',
            menu: [{
                text: 'Better'
            },{
                text: 'Good'
            },{
                text: 'Best'
            }]
        },{
            xtype: 'tbsplit',
            text: 'Split Button',
            menu: [{
                text: 'Item One'
            },{
                text: 'Item Two'
            },{
                text: 'Item Three'
            }]
        }]
    });
});

当我在ext-4.2.1.883包中运行上述代码时,它没有显示所需的工具栏。请帮忙

4

1 回答 1

1

您使用了错误的 xtypes,请使用:

  • 按钮而不是“tbbutton”
  • 拆分按钮而不是“tbsplit
于 2013-10-31T08:18:26.890 回答