1

我想编写 CKEditor 插件。我在面板上添加了按钮,当我按下它时会显示对话框。在此对话框中,我可以设置文本,并在按下 OK 后将此文本插入到编辑器中。

但我想添加功能。当我在编辑器中选择文本并按下此按钮时,我希望在该对话框字段中看到选定的文本。并且在编辑并按确定后,必须将所选文本替换为新文本。

谢谢!

4

2 回答 2

3

这不是 100% 工作,第一部分工作,最后的替换不是..

CKEDITOR.plugins.add( 'example',
{
    init: function( editor )
    {
        editor.addCommand( 'exampleDialog', new CKEDITOR.dialogCommand( 'exampleDialog' ) );

        editor.ui.addButton( 'example',
        {
            label: 'Insert a Link',
            command: 'exampleDialog'//,
            //icon: this.path + 'images/icon.png'
        } );

        CKEDITOR.dialog.add( 'exampleDialog', function( editor )
        {
            return {
                title : 'example Properties',
                minWidth : 400,
                minHeight : 200,
                contents :
                [
                    {
                        id : 'general',
                        label : 'Settings',
                        elements :
                        [
                            {
                                type : 'text',
                                id : 'mystring',
                                label : 'text',                             
                                commit : function( data )
                                {
                                    data.text = this.getValue();
                                }
                            }
                        ]
                    }
                ],

                onShow : function() {
                    //this._ranges = editor.getSelection().getRanges()
                    var mySelection = editor.getSelection().getSelectedText();
                    this.setValueOf("general","mystring",mySelection);

                },

                onOk : function()
                {
                    var data = {};
                    this.commitContent( data );
                    var txt = data.text;


                    editor.insertText(txt);  //this is not correct, since selection is being cleared...
                }
            };
        });
    }
});
于 2013-09-12T18:07:18.063 回答
1

我的解决方案是简单地将其设置在 onShow 函数中:

    onShow: function () {
        this.setValueOf('my-tab-id', 'my-element-id', editor.getSelection().getSelectedText());

        // ...
    },

完整的代码骨架:

(function () {
    CKEDITOR.dialog.add('mySelectorDialog', function (editor) {

        return {
            contents: [
                {
                    id: 'my-tab-id',
                    label: 'My Tab Label',
                    elements: [
                        {
                            id: 'my-element-id',
                            type: 'text',
                            label: 'My Element Label'
                        }
                        // ...
                    ]
                }
            ],

            onShow: function () {
                this.setValueOf('my-tab-id', 'my-element-id', editor.getSelection().getSelectedText());

                // ...
            },

            onOk: function () {
                // ...
            }

            // ...
        };
    });
})();
于 2016-06-09T13:30:36.390 回答