Ext Js 4中的工具栏

时间:2013-10-31 08:01:48

标签: extjs toolbar

我是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包中运行上述代码时,它没有显示所需的工具栏。请帮忙

1 个答案:

答案 0 :(得分:1)

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