CKeditor自定义插件顺序
CKeditor custom plugins order
您好,我正在使用带有 4 个自定义插件的 ckeditor 4.3.2 版,它们出现在插入工具栏中,我以这种方式调用插件:
extraPlugins: 'aexpagebreak,aexextraline,aexsinglecolumn,aextwocolumn',
它们加载正常,但每次页面重新加载时栏中插件的顺序都会随机更改,我如何为工具栏中的插件图标定义固定顺序?
您可以通过定义一个告诉 ckeditor 如何显示和分组项目的对象来自行配置工具栏。
http://docs.ckeditor.com/#!/guide/dev_toolbar
来自 ckeditor 文档:
config.toolbarGroups = [
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
{ name: 'links' },
{ name: 'insert' },
{ name: 'forms' },
{ name: 'tools' },
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
{ name: 'others' },
'/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
{ name: 'styles' },
{ name: 'colors' },
{ name: 'about' }
];
更多信息:
http://docs.ckeditor.com/#!/guide/dev_toolbarconcepts-section-toolbar-groups-configuration
看起来他们的网站上有一个工具栏配置器工具,但它可能只适用于 v4.5 及更高版本。不完全确定:
http://ckeditor.com/tmp/4.5.0-beta/ckeditor/samples/toolbarconfigurator/index.html#basic
您好,我正在使用带有 4 个自定义插件的 ckeditor 4.3.2 版,它们出现在插入工具栏中,我以这种方式调用插件:
extraPlugins: 'aexpagebreak,aexextraline,aexsinglecolumn,aextwocolumn',
它们加载正常,但每次页面重新加载时栏中插件的顺序都会随机更改,我如何为工具栏中的插件图标定义固定顺序?
您可以通过定义一个告诉 ckeditor 如何显示和分组项目的对象来自行配置工具栏。
http://docs.ckeditor.com/#!/guide/dev_toolbar
来自 ckeditor 文档:
config.toolbarGroups = [
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
{ name: 'links' },
{ name: 'insert' },
{ name: 'forms' },
{ name: 'tools' },
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
{ name: 'others' },
'/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
{ name: 'styles' },
{ name: 'colors' },
{ name: 'about' }
];
更多信息:
http://docs.ckeditor.com/#!/guide/dev_toolbarconcepts-section-toolbar-groups-configuration
看起来他们的网站上有一个工具栏配置器工具,但它可能只适用于 v4.5 及更高版本。不完全确定:
http://ckeditor.com/tmp/4.5.0-beta/ckeditor/samples/toolbarconfigurator/index.html#basic