2

サイトの WYSIWYG エディターに TinyMCE を使用しています。前景色を使用する既存のカラーピッカーに加えて、カスタム カラー ピッカーをエディターに追加したいと考えています。このhttp://fiddle.tinymce.com/lwcaab/16を見つけて、それを使用してボタンを表示させましたが、2 つの問題があります。そのボタンに表示される色をフィルター処理する必要があります (いくつかの色のみを表示します)。色をクリックしても、エディターのフォントの色は変わりません。

tinymce.create('tinymce.plugins.ExamplePlugin', {
    createControl: function(n, cm) 
        {
            switch(n)
            {
            case "universityColors":
               var o = {};
               ed=tinyMCE.activeEditor;
               o.scriptURL = ed.baseURI.getURI();
               o['class'] = 'mce_forecolor';
               o.title='University Font Colors';
               o.scope=this;
               o.image = '../images/uor.ico',
               o.onclick = function (color) { console.log('clicked',color);/*this.cs.showMenu(); if (this.o.onClick) this.o.onClick(c);*/};
               o.onselect = function (color) {console.log('selected',color); /*this.color=this.o.color=c; if (this.o.onSelect) this.o.onSelect(c);*/};

                var mcsb = cm.createColorSplitButton('universityColors', o);

                // return the new ColorSplitButton instance
                return mcsb;
            }
            return null;
        }
   });
tinymce.PluginManager.add('universityColorPicker', tinymce.plugins.ExamplePlugin);
tinyMCE.init({
    mode: "specific_textareas",
    editor_selector: "tinyMCE",
    theme : "advanced",
    plugins : "emotions,spellchecker,advhr,insertdatetime,preview, -universityColorPicker", 

     // Theme options - button# indicated the row# only
    theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,fontselect,fontsizeselect,formatselect",
    theme_advanced_buttons2 : "cut,copy,paste,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,|,code,preview,|,forecolor,backcolor, universityColors",
    theme_advanced_buttons3 : "insertdate,inserttime,|,spellchecker,advhr,,removeformat,|,sub,sup,|,charmap,emotions",      
    theme_advanced_toolbar_location : "top",
    theme_advanced_toolbar_align : "left",
    theme_advanced_statusbar_location : "bottom",
    theme_advanced_resizing : true,


    });

私は、http: //fiddle.tinymce.com/jYcaabでも動作するフィドルを作成しました。

4

1 に答える 1

3

私はその古いフィドルを作成しました:)ここで、色を制限する変更されたフィドル: http://fiddle.tinymce.com/jYcaab/1

コンテンツにフォントを適用することは別の話です。更新: フォントが適用されるようになりました: http://fiddle.tinymce.com/jYcaab/2

于 2013-03-28T10:07:39.140 に答える