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