1

Paul Hannan 的这条推文中,我了解到您可以设置contentTypexs:GoogleSearch,生成的字符串将成为搜索到 Google 的链接。例如,如果代码是:

<xp:text id="c1" value="XPages" contentType="xs:GoogleSearch">

生成的 HTML 类似于“XPages”一词的 Google 搜索链接

<span id="view:_id1:c1" class="xspTextComputedField">
    <a href="http://www.google.com/search?q=XPages" target="_blank">XPages</a>
</span>

Domino Designer (8.5.3) 仅显示 和 的两个选项htmltext但这在我的情况下有效。我的问题是,还有其他可用于contentType属性的有效值吗?

4

1 回答 1

0

这应该告诉您在任何给定版本上寻找的答案。

List localList = ((ApplicationEx)FacesContext.getCurrentInstance().getApplication()).findServices("com.ibm.xsp.renderkit.ContentTypeRenderer");

这些是我在 8.5.3 上看到的

xs:lc.vcard|Profiles VCard
xs:lc.vcardi|Profiles VCard Inline
xs:st.livename|IBM Sametime Live Names
twitterContent
xs:GoogleSearch|Google Search
于 2013-05-22T17:19:33.833 回答