如何为tr的单个项目着色:selectOneChoice?

时间:2013-01-01 07:56:06

标签: java html jsf jsf-1.2

  

可能重复:
  Bold second item of a selectOneMenu

是否可以在选择项目下拉列表中绘制/着色项目?

我的代码:

<tr:selectOneChoice value="#{bean.entity}> 
   <f:selectItems value="#{bean.entities}" />
</tr:selectOneChoice>

支持bean:

public List<SelectItem> getEntities() {
   List<SelectItem> entities = new ArrayList();
   SelectItem item = new SelectItem();
   item.setValue("value");
   item.setLabel("label");
   entities.add(item);
}

我想在项目中添加样式。谁知道怎么做?

1 个答案:

答案 0 :(得分:0)

不,通常这是不可能的,它的渲染取决于浏览器 如果绝对必要,您将必须创建<div>并将其设置为类似下拉列表。