我几天前问过这个问题xpages returning class icon in view column,我理解内容类型必须设置为" HTML"。
是否可以连接&#39;一些带有对话标题的fa-icon(<span class="fa-save fa" />
)?
<xe:dialog id="exampleDialog" refreshOnShow="true">
<span class="fa-save fa" />
<xe:this.title><![CDATA[#{javascript:"Some string returned."}]]>
// I couldn't add the <span> tag here...
</xe:this.title>
<xe:dialogContent id="dialogContent1">
....
但图标的添加低于标题栏。
答案 0 :(得分:9)
确实可以这样做:
您只需要在title属性中返回所有必需的HTML。以下是用于上图的示例:
<xe:dialog id="InputDialog" style="width:200px">
<xe:this.title><![CDATA[#{javascript:"<span class='fa-save fa' /><i>Testing</i>"}]]></xe:this.title>
<xe:dialogContent id="dialogContent1">Test content</xe:dialogContent>
</xe:dialog>
答案 1 :(得分:0)
对话框标题区域没有构面,因此您只能在其中输入纯文本。只有将扩展库对话框控件本身扩展为添加方面或在标题中添加HTML才能实现。