ツールバー ボタンの状態を切り替える最も簡単な方法は何ですか (デフォルトの太字ボタンで動作するように)? ボタンの外観をデフォルトから選択済みに変更するクラス i Tinymce に「取得」できません。これは私のプラグインコードです(簡略化):
tinymce.PluginManager.add('myplugin', function (editor) {
editor.addButton('mybutton', {
text: false,
image: 'someimage.png',
onclick: function () {
/* Toggle this toolbar button state to selected (like with the tinymce bold-button)*/
/* and of course some other code goes here */
}
});
});