如何从<h:selectonemenu>中的下拉列表中删除默认选项

时间:2015-07-06 15:53:43

标签: html jsf drop-down-menu selectonemenu

我正在开发一个基于selectOneMenu

的下拉列表的JSF页面
<h:selectOneMenu id="speciality_unit" value="#{editCdc.selectedUnit}">
    <f:selectItem itemValue="" itemLabel="Select Unit" />
    <f:selectItems value="#{editCdc.listOfUnit}" />
</h:selectOneMenu>

我在这里遇到的问题是,每当我选择此下拉菜单时,它会在列表中显示默认选项以及其他项目。即它显示“选择单位”以及其他单位。我想从下拉列表中删除此“选择单位”。我怎么能这样做?

1 个答案:

答案 0 :(得分:3)

使用CSS隐藏它。

select.hideFirstOption option:first-child {
    display: none;
}
int total = countMethod("SELECT id FROM the_table WHERE id=" + inputID);
if(total > 0) {
    //Throw a warning message, it already exists
} else {
    //Insert it into the database
}
相关问题