如何将CKEditor自定义配置文件添加到XPage?

时间:2017-10-18 06:13:20

标签: javascript dojo ckeditor xpages ssjs

我正在尝试向我的应用程序中的所有RichText项添加自定义配置文件,但我无法弄清楚如何在dojo属性中正确引用配置文件。我想将它引用到数据库中。

<xp:dojoAttribute name="customConfig" value="cke_custom_config.js"></xp:dojoAttribute>

enter image description here

<xp:inputRichText id="inputRichText2" value="#{cd.Body}">
  <xp:this.dojoAttributes>
    <xp:dojoAttribute name="customConfig" value="cke_custom_config.js"></xp:dojoAttribute>
  </xp:this.dojoAttributes>
</xp:inputRichText>

在上面的示例中,配置文件被引用为: http://server/xsp/.ibmxspres/domino/ckeditor/cke_custom_config.js?t=G44E

如何更改配置文件的路径以指向&#34; WebContent / cke_custom_config.js&#34; ?

1 个答案:

答案 0 :(得分:3)

<xp:inputRichText id="inputRichTextBody"
    value="#{cd.Body}">
    <xp:this.dojoAttributes>
        <xp:dojoAttribute name="customConfig"
            value="${facesContext.externalContext.request.contextPath}/cke_custom_config.js?open">
        </xp:dojoAttribute>
    </xp:this.dojoAttributes>
</xp:inputRichText>

cke_custom_config.js?open 之前添加的EL部分是当前数据库的路径。