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:selectOneMenu>不可选择/不可更改。但仍然应该提交。它应该仅供用户参考。如果我们使用disabled=true它将不会提交。
<h:selectOneMenu>
disabled=true
除了禁用如何使选择一个菜单不可更改?
只需禁用它并在隐藏输入中提供值。
<h:selectOneMenu value="#{bean.value}" disabled="true">...</h:selectOneMenu> <h:inputHidden value="#{bean.value}" />
只需使用 partialsubmit="true" 和 disabled="true" 它就会提交值