是否有可能只渲染jsf
中单选按钮的某些项目(基于它们的值) e.g this below: (but this approach doesn't work)
<h:selectOneRadio value="#{user.favColor3}">
<f:selectItems rendered="c.colorValue eq 'red'" .... var="c"
</h:selectOneRadio>
所以,我想迭代这些项目,只显示红色项目。
提前致谢。
铯