サブメニュー付きのリストボックスを作りたいのですが、サブメニューの作り方がわかりません。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
}
});
価値観の場所で、自分の価値観でサブアイテムを作りたい。誰もそれを行う方法を知っていますか?
もうありがとう!!