【发布时间】:2015-03-27 18:57:51
【问题描述】:
我在 Xpage(运行 Domino 9.0.0)的 RichTextControl 中使用 dojo 属性。随心所欲地拥有一切,除了我无法让工具栏显示为彩色。
在 IBM 的 this 网页中,工具栏是彩色的,看起来好多了。
如何获得颜色工具栏?
【问题讨论】:
我在 Xpage(运行 Domino 9.0.0)的 RichTextControl 中使用 dojo 属性。随心所欲地拥有一切,除了我无法让工具栏显示为彩色。
在 IBM 的 this 网页中,工具栏是彩色的,看起来好多了。
如何获得颜色工具栏?
【问题讨论】:
Notes 9 中不再有现成的 CKEditor 工具栏彩色。
工具栏图标在皮肤中定义。您可以在 <server-directory>\data\domino\html\ckeditor\skins 找到 Domino 服务器上所有已安装的皮肤。
在ckeditor.com/addons/skins/all 寻找您选择的皮肤。工具栏图标在“Office 2013”或“Moono Color”等皮肤中是彩色的。点击那里的下载按钮并将文件夹从 zip 文件复制到 <server-directory>\data\domino\html\ckeditor\skins。
使用 Dojo 属性链接到新皮肤:
<xp:this.dojoAttributes>
<xp:dojoAttribute
name="skin"
value="office2013">
</xp:dojoAttribute>
</xp:this.dojoAttributes>
【讨论】: