gpt4 book ai didi

javascript - 如何将 CKEditor 自定义配置文件添加到 XPages?

转载 作者:行者123 更新时间:2023-11-30 11:29:25 29 4
gpt4 key购买 nike

我正在尝试将自定义配置文件添加到我的应用程序中的所有 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

如何更改配置文件的路径以指向“WebContent/cke_custom_config.js”?

最佳答案

<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部分是当前数据库的路径。

关于javascript - 如何将 CKEditor 自定义配置文件添加到 XPages?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46803858/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com