如何转义f:SelectItem itemLabel
属性以便我可以在标签中添加超链接?
使用以下代码,我可以转义h:outputText
但不能转义f:selectItem
。
<h:outputText value="MyLink <a href="http://google.com" >Google </a>" escape="false"/>
<h:selectOneRadio id="p" value="#{bean.somevalue}" required="true" >
<f:selectItem escape="false" escapeItem="false" itemLabel="One <a href="http://google.com" >Google </a>" itemValue="O" />
<f:selectItem escape="false" escapeItem="false" itemLabel="Two <a href="http://stackoverflow.com" >Stackoverflow</a>" itemValue="T" />
</h:selectOneRadio>
我想要一些如下图所示的内容
答案 0 :(得分:16)
这是JSF中的纪录片错误。 actual attribute名为itemEscaped
,而不是escapeItem
(as incorrectly documented in VDL)或escape
(Eclipse自动完成确实因某些未知原因而自动提取,但实际上完全没有VDL)。
以下构造应该对你有用(至少,它对我来说在Mojarra 2.1.17上):
<h:selectOneRadio>
<f:selectItem itemEscaped="false" itemLabel="One <a href="http://google.com" >Google </a>" itemValue="O" />
<f:selectItem itemEscaped="false" itemLabel="Two <a href="http://stackoverflow.com" >Stackoverflow</a>" itemValue="T" />
</h:selectOneRadio>