Initially reported in Faces project: jakartaee/faces#1445
this doesn't work
<h:selectOneMenu value="#{bean.selectedCountry}">
<f:selectItems
value="#{bean.countries}" var="country"
itemLabel="#{country.countryName}"
pt:data-icon="flag flag-#{country.isoCode}"/>
</h:selectOneMenu>
but this works
<h:selectOneMenu value="#{bean.selectedCountry}">
<c:forEach items="#{bean.countries}" var="country">
<f:selectItem
itemValue="#{country}"
itemLabel="#{country.countryName}"
pt:data-icon="flag flag-#{country.isoCode}" />
</c:forEach>
</h:selectOneMenu>
Initially reported in Faces project: jakartaee/faces#1445
this doesn't work
but this works