好的尝试使用JSF下拉菜单。我做了以下跟随其他人发布或一般在互联网上的内容..
<td>
<h:selectOneMenu id="purposeOption"
required="true"
value="#{formData.requestType}">
<f:selectItem
itemValue="#{formData.projectOption}"
itemLabel="Project"/>
<f:selectItem
itemValue="#{formData.trainingOption}"
itemLabel="Training"/>
</h:selectOneMenu>
</td>
不明白为什么它会在下一页的请求类型旁边显示空格。
Request Type: #{formBean.requestType}
任何提示?
答案 0 :(得分:-1)
答案是:
<td>
<h:selectOneMenu id="purposeOption"
required="true"
value="#{formBean.requestType}">
<f:selectItem
itemValue="Project"
itemLabel="Project"/>
<f:selectItem
itemValue="Training"
itemLabel="Training"/>
</h:selectOneMenu>
</td>