我可以将表达式传递给 JSF 2 传递属性吗?以下代码不起作用。#{country.isoCode}
不评估表达式。
<h:selectOneMenu value="#{bean.selectedCountry}" styleClass="selectlist">
<f:selectItems
value="#{bean.countries}" var="country"
itemLabel="#{country.countryName}"
pt:data-icon="flag flag-#{country.isoCode}"/>
</h:selectOneMenu>
我正在使用命名空间
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"
和引导选择。属性“data-icon”用于显示图像。看:
http://silviomoreto.github.io/bootstrap-select/#data-icon
渲染输出:
<i class="glyphicon flag flag-"></i>