如何动态设置SelectManyCheckbox标题JSF2

时间:2011-04-17 05:15:11

标签: jsf-2

有没有办法动态设置selectManyCheckbox标题?在标题中我想显示项目名称。

<h:selectManyCheckbox id="sType" value="#{studentBean.optionalsubjects}" converter="subjectConverter" required="true">
   <f:selectItems value="#{subjectBean.oplist}" var="sType" itemLabel="#{sType.detail}" itemDescription="#{sType.detail}" />
</h:selectManyCheckbox>

1 个答案:

答案 0 :(得分:1)

我认为这不适用于h:selectManyCheckbox,因为所有选择项的title属性都相同。

您可以尝试使用jquery tooltip plugin之类的javascript来附加客户端的工具提示。