有没有办法动态设置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>
答案 0 :(得分:1)
我认为这不适用于h:selectManyCheckbox
,因为所有选择项的title属性都相同。
您可以尝试使用jquery tooltip plugin之类的javascript来附加客户端的工具提示。