XPages:如何将 Notes 文档中的所有直通富文本转换为 HTML
XPages: how to convert all pass-through rich text in a Notes document to HTML
我有这个 Notes 文档,在 Notes 中维护,但通过 XPages 在浏览器中显示。该文档包含一个富文本字段。富文本包含一些直通 HTML(< h r > 例如,它有效),但它还包含一个以某种方式过滤掉的 iframe。
有没有人对此有更多了解,更具体地说:有没有人知道如何设置 XPages 以生成 all pass-thru HTML?
如果问题出在 iframe 的过滤上,那么只需将富文本控件的 属性 htmlFilter 设置为 "identity"。这将关闭所有内容过滤。
<xp:inputRichText id="inputRichText1"
value="#{document1.postBody}" htmlFilter="identity"
htmlFilterIn="identity">
</xp:inputRichText>
我有这个 Notes 文档,在 Notes 中维护,但通过 XPages 在浏览器中显示。该文档包含一个富文本字段。富文本包含一些直通 HTML(< h r > 例如,它有效),但它还包含一个以某种方式过滤掉的 iframe。
有没有人对此有更多了解,更具体地说:有没有人知道如何设置 XPages 以生成 all pass-thru HTML?
如果问题出在 iframe 的过滤上,那么只需将富文本控件的 属性 htmlFilter 设置为 "identity"。这将关闭所有内容过滤。
<xp:inputRichText id="inputRichText1"
value="#{document1.postBody}" htmlFilter="identity"
htmlFilterIn="identity">
</xp:inputRichText>