我想问一下我得到的这个小但非常重要的问题:(我已经下载了CKeditor 4.3.2,相信我一直在互联网上寻找ssooooooo很长时间没有任何成功。)
我试图在我的工具栏中显示“笑脸”图标,但它没有显示出来,而这种情况发生在其他一些像“保存”,“打印”,“新页面”等我不知道我知道为什么。此外,当我插入一个视频的链接不显示,以便人们观看它一旦发布...一切正常与其他人工作,但不是我刚才提到的这些!请!谢谢你的答复!
PS:我在一些论坛上发现这些版本4.3.2中的图标已经改变了他们的名字,你认为这是原因吗?这是我的代码:
CKEDITOR.editorConfig = function( config )
{
uiColor: '#14B8C4',
config.toolbar = 'Full';
`config.toolbar_Full =
[
{ name: 'document', items : [ 'Source','-', 'Save','NewPage','DocProps','Preview','Print','-','Templates', 'Emoticons' ] },//solo Source
{ name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo', 'clipboard' ] },//BIen
{ name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','SpellChecker', 'Scayt', 'TextColor' ] },//Solo SpellChecker
{ name: 'forms', items : [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', //nada
'HiddenField' ] },
'/',
{ name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },//Todas
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','CreateDiv', 'JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','BidiLtr','BidiRtl' ] },//Todas hasta Bloquiote
{ name: 'links', items : [ 'Link','Unlink','Anchor' ] }, //Todas
{ name: 'insert', items : [ 'Image','Flash','Table','HorizontalRule',"Smiley",'SpecialChar','PageBreak','Iframe' ] }, //Falta flash, smiley, ifame
'/',
{ name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] },
{ name: 'colors', items : [ 'TextColor','BGColor' ] }, //ninguno
{ name: 'tools', items : [ 'Maximize', 'ShowBlocks','-' ] }
];
//ToolBar groups configuration
config.toolbarGroups = [
{ name: 'document', groups: ['mode', 'document', 'doctools']},
{ name: 'clipboard', groups: ['clipboard', 'undo']},
{ name: 'editing', groups: ['find', 'selection', 'spellchecker']},
{ name: 'forms'},
'/',
{ name: 'basicstyles', groups: ['basicstyles', 'cleanup']},
{ name: 'paragraph', groups: ['list', 'indent', 'blocks', 'align', 'bidi']},
{ name: 'links'},
{ name: 'insert'},
'/',
{ name: 'styles'},
{ name: 'colors'},
{ name: 'tools'},
{ name: 'others'},
];
};
`
答案 0 :(得分:2)
最后我得到了非常简单的解决方案。但是,在我告诉你解决方案之前,我会告诉你原因:
解决方案是:转到Download CKEditor with plugins selected by you,在那里你会找到三个不同的软件包供下载,下面还有另一个:“或者让我自定义我的CKEditor”点击它并“下载和定制”编辑”。
之后,您将被重定向到另一个页面,在该页面上您将看到两列,左侧显示默认包中的所有插件(如果您不想要,也可以删除一些插件)他们)和右栏显示了一些可以添加到包()的插件。
希望您觉得此解决方案很有帮助。
答案 1 :(得分:0)
您是否安装了插件以支持缺少的按钮?
我在CKeditor中看到我们已经使用了一段时间了,突然间,它丢失了一些工具栏按钮。
他们被配置为在那里,但没有显示。像TextColor,Justifieds等按钮。
我们遇到的问题是我们错过了这些按钮的插件。我们必须从包含一些插件的编译切换到基本代码或其他东西。