3

ツールバー ボタンの状態を切り替える最も簡単な方法は何ですか (デフォルトの太字ボタンで動作するように)? ボタンの外観をデフォルトから選択済みに変更するクラス 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 */
        }
    });
});
4

4 に答える 4

0

コマンドで最初に発生する statechange:

editor.fire('FullscreenStateChanged', {state: fullscreenState});

ボタン onPostRender 変更ボタンの状態:

onPostRender: function() {
    var self = this;

    editor.on('FullscreenStateChanged', function(e) {
        self.active(e.state);
    });
}
于 2016-06-19T02:02:39.940 に答える