我需要在TinyMCE 4中的“工具”项旁边添加另一个下拉菜单:
我找到的最接近的解决方案是:
// Adds a custom menu item to the editor that inserts contents when clicked
// The context option allows you to add the menu item to an existing default menu
tinymce.init({
...
setup: function(ed) {
ed.addMenuItem('example', {
text: 'My menu item',
context: 'tools',
onclick: function() {
ed.insertContent('Hello world!!');
}
});
}
});
但它只会在现有的“工具”菜单中添加一个项目。
答案 0 :(得分:16)
您可以尝试同时指定菜单'和'菜单栏'当你调用tinymce.init()在现代主题上添加一个新的菜单栏项时,选项。
我尝试了它并且有效。
您可以使用TinyMCE 4.1.7查看http://fiddle.tinymce.com/39eaab/1上的现场演示。
<script type="text/javascript">
tinymce.init({
selector: "textarea",
menu : {
file : {title : 'File' , items : 'newdocument'},
edit : {title : 'Edit' , items : 'undo redo | cut copy paste pastetext | selectall'},
insert : {title : 'Insert', items : 'link media | template hr'},
view : {title : 'View' , items : 'visualaid'},
format : {title : 'Format', items : 'bold italic underline strikethrough superscript subscript | formats | removeformat'},
table : {title : 'Table' , items : 'inserttable tableprops deletetable | cell row column'},
tools : {title : 'Tools' , items : 'spellchecker code'},
newmenu: {title : 'New Menu', items : 'newmenuitem'}
},
menubar: 'file edit newmenu',
setup: function(editor) {
editor.addMenuItem('newmenuitem', {
text: 'New Menu Item',
context: 'newmenu',
onclick: function () { alert('yey!'); }
});
}
});
</script>
<form method="post" action="dump.php">
<textarea name="content"></textarea>
</form>
答案 1 :(得分:0)
不确定这是你需要的,但是如果你试试这个怎么办:
<script type="text/javascript">
tinymce.init({
selector: "textarea",
toolbar: "mybutton",
setup: function(editor) {
editor.addButton('mybutton', {
type: 'menubutton',
text: 'My button',
icon: false,
menu: [
{text: 'Menu item 1', onclick: function() {editor.insertContent('Menu item 1');}},
{text: 'Menu item 2', onclick: function() {editor.insertContent('Menu item 2');}}
]
});
}
});
</script>
您可以查看代码here
的结果答案 2 :(得分:-1)
由于您动态生成菜单,即菜单数据来自一个 JSON 对象,我尝试通过 FOR 循环,但它对我不起作用。
editor.ui.registry.addMenuButton('mybutton', {
text: 'Insertar un campo del formulario',
fetch: function (callback) {
var menuItems = [];
for (let i = 0; i < Object.keys(json).length; i++){
//console.log(json[i]);
//for (var clave in json) {
var items = [
{
type: 'menuitem',
text: json[i].text,
onAction: function () {
editor.insertContent(json[i].value);
}
}
];
menuItems.push(items);
}
callback(menuItems);
}
});