9 javascript extjs toolbar drop-down-menu
我已经完成了一个带有按钮的工具栏,它有一个下拉菜单,但我需要更多的子菜单级别.有可能这样做吗?例:
toolbarbutton - >
等等...
Abd*_*oof 17
看看这个例子吧!您可以使用Ext.menu.Menu类来实现.这是一个例子:
{
text: 'Main Menu',
menu: {
xtype: 'menu',
items: [{
text: 'Menu One',
iconCls: 'edit'
}, {
text: 'Menu Two',
menu: {
xtype: 'menu',
items: [{
text: 'Next Level'
},{
text: 'Next Level'
},{
text: 'Next Level'
}]
}
}, {
text: 'Menu Three',
scale: 'small'
}, {
text: 'Menu Four',
scale: 'small'
}]
}
}
Run Code Online (Sandbox Code Playgroud)