I have a <h:selectManyCheckbox> and they have in the HTML source an autogenerated name attribute. I need to give it a fixed name attribute. How can I do that?
Here’s what I am using for now:
<h:selectManyCheckbox value="#{tab.values}" layout="pageDirection">
<f:selectItems value="#{tab.checkBoxes}" />
</h:selectManyCheckbox>
Specify the
idattribute:Also look here :
JSF HTML Tag Referenceh:selectManyCheckbox