Xpages中的CKEditor中的颜色工具栏(皮肤?)

时间:2015-03-27 18:57:51

标签: ckeditor xpages

我在Xpage(运行Domino 9.0.0)中使用RichTextControl中的dojo属性。拥有一切就像我想要的那样除了我不能让工具栏显示颜色。

在IBM的this网页中,工具栏是彩色的,看起来好多了。

如何获取彩色工具栏?

enter image description here

1 个答案:

答案 0 :(得分:4)

Notes 9中没有开箱即用的CKEditor工具栏

工具栏图标在皮肤中定义。您可以在<server-directory>\data\domino\html\ckeditor\skins上的Domino服务器上找到所有已安装的外观。

ckeditor.com/addons/skins/all寻找您选择的皮肤。工具栏图标的颜色为&#34; Office 2013&#34;或&#34; Moono Color&#34;。单击那里的“下载”按钮,将zip文件夹中的文件夹复制到<server-directory>\data\domino\html\ckeditor\skins

使用Dojo属性链接到新外观:

enter image description here

 <xp:this.dojoAttributes>
     <xp:dojoAttribute
        name="skin"
        value="office2013">
     </xp:dojoAttribute>
 </xp:this.dojoAttributes>