1

我正在尝试在 ck 编辑器中集成 Javascript 虚拟键盘插件。在 pugin 内部,他们给出了有关如何将其与 ck 编辑器集成的说明,但我仍然无法集成它。所以任何人都可以帮助我解决我的问题。

安装:

 1. Extract contents of this archive to the /plugins/ folder under CKEditor root
 2. add ",extraPlugins : 'Jsvk'" line to the editor constructor parameters
 3. Update your toolbar by adding item 'Jsvk' to one of the button groups

您可以从此链接下载插件

到目前为止,我已经尝试过包括第 2 步和第 1 步但在第 3 步卡住的方法:-

CKEDITOR.editorConfig = function( config ) {
    // Define changes to default configuration here. For example:
     config.language = 'DE';
     config.extraPlugins = 'equation';
     config.extraPlugins = 'Jsvk' ; };

它向我展示了虚拟键盘的选项,但是每当我尝试打开它时,它都会向我展示一个空白的弹出框

4

2 回答 2

1

您需要添加Jsvk- CKEDITOR.editorConfigconfig.toolbarGroups

CKEDITOR.editorConfig = function( config ) { 
     // .....................
     config.toolbarGroups = [ 
         // .....................
         { name: 'editing', groups: [ 'find', 'selection', 'spellchecker', 'Jsvk' ] }, 
         // ...............................................................^^^^^^
     ];
};

也改变config.extraPlugins

config.extraPlugins = 'equation, Jsvk';
于 2013-03-08T11:19:30.903 回答
1

我的问题已解决,因为它与其他插件存在冲突问题,这就是它显示空白弹出页面的原因。

于 2013-03-09T08:16:22.087 回答