placeholder for <h:selectOneMenu>

旧城冷巷雨未停 提交于 2019-12-12 01:26:50

问题


I successfully done using placeholder in inputText but i tried this in selectOneMenu can't able to get . instead of martial status in selectOneMenu i want to use placeholder

or atleast i want to change martial status color

<h:selectOneMenu  value="">
<f:selectItem  itemValue="0" itemLabel="Marital status"/>
<f:selectItem itemValue="1" itemLabel="Single"/>
<f:selectItem itemValue="2" itemLabel="married"/>
</h:selectOneMenu>

回答1:


If I understood you right

JSF 1

<f:selectItem itemLabel="Select Something" itemValue="#{null}" />

JSF 2

<f:selectItem itemValue="Select Something" noSelectionOption="true" />


来源:https://stackoverflow.com/questions/13172775/placeholder-for-hselectonemenu

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!