我想创建一个带有子菜单的列表框,但我不知道如何创建子菜单。 关于TinyMCE的文档很糟糕,所以我在这里提出这个问题。
这是我的代码:
editor.addButton('OwnStyling', {
type: 'listbox',
text: 'Stylesheet',
icon: false,
onselect: function(e) {
editor.insertContent(this.value());
},
values: [
{text: 'Menu item 1', value: 'Some text 1'},
{text: 'Menu item 2', value: 'Some text 2'},
{text: 'Menu item 3', value: 'Some text 3'}
],
onPostRender: function() {
// Select the second item by default
}
});
在值的位置,我想用自己的值创建一个子项。 谁知道怎么做?
谢谢!!
答案 0 :(得分:2)
尝试类似
的内容{text:'Menu item', menu:[{text:'submenu1',value:'some value'},{text:'submenu2',value:'some value'}]}
对我而言,它适用于上下文菜单,但没有在列表框上试用!