这是我的.xhtml文件
<tr:selectOneChoice >
<f:selectItems value="#{bean.items}"/>
</tr:selectOneChoice>
我希望能够在客户端的不同选项之间进行识别。 在我的支持bean中,每个Choice都有布尔值。
是否可以在客户端实际识别这些选项?
bean代码如下:
public List<SelectItem> getItems(Menu menu) {
List<SelectItem> list = new ArrayList();
SelectItem selectItem = new SelectItem(new MyObj("some string",false), "label");
list.add(selectItem);
return list;
}
MyObj类包含我希望能够在客户端看到的标志。
任何人都知道如何做到这一点?
谢谢,
约翰。
答案 0 :(得分:0)
为什么不创建List
MyObj
,遍历列表并使用itemDisabled
上的f:selectItem
属性。
<tr:selectOneChoice>
<tr:forEach items="#{bean.myObjList}" var="myObj">
<f:selectItem itemLabel="#{myObj.label}"
itemValue="#{myObj.value}"
itemDisabled="#{myObj.flag}"/>
</tr:forEach>
</tr:selectOneChoice>