Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个<h:selectManyCheckbox>,他们在 HTML 源中有一个自动生成的name属性。我需要给它一个固定的name属性。我怎样才能做到这一点?
<h:selectManyCheckbox>
name
这是我现在使用的:
<h:selectManyCheckbox value="#{tab.values}" layout="pageDirection"> <f:selectItems value="#{tab.checkBoxes}" /> </h:selectManyCheckbox>
指定id属性:
id
<h:selectManyCheckbox id="someName" value="#{tab.values}" layout="pageDirection">
也看这里:
JSF HTML 标记参考h:selectManyCheckbox