如您所知,Dolibarr是一个用PHP和MySQL编写的优秀ERP系统。
它使用CKeditor作为文本编辑器。 现在我想在它的工具栏中添加一些选项。
在产品卡页面中使用的dolibarr_details
(如下所示)中定义了htdocs\theme\eldy\ckeditor\config.js
。但是当我添加新的选项时,对节目编辑器工具栏没有任何影响。
config.toolbar_dolibarr_details =
[
['Source','Maximize'],
['SpellChecker', 'Scayt'], // 'Cut','Copy','Paste','-', are useless, can be done with right click, even on smarpthone
['Format','Font','FontSize'],
['Bold','Italic','Underline','Strike','-','TextColor','RemoveFormat'], // ,'Subscript','Superscript' useless
['NumberedList','BulletedList','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','SpecialChar']
];
我不知道为什么这没效果?
如果有人知道,请帮助我。
答案 0 :(得分:0)
正如我在我的dolibarr安装中看到的那样
config.toolbar_dolibarr_details =
[
['Source','Maximize'],
['Cut','Copy','Paste','-','SpellChecker', 'Scayt'],
['Format','Font','FontSize'],
['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'],
['NumberedList','BulletedList','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','SpecialChar']
];
仅与发票,道具,订单中的产品系列中的ckeditor相关。