2
JSFでドロップダウンボックスを作成するにはどうすればよいですか?JSFでドロップダウンボックスを作成するにはどうすればよいですか?
JSFでドロップダウンボックスを作成するにはどうすればよいですか?JSFでドロップダウンボックスを作成するにはどうすればよいですか?
To select one option
<h:selectOneMenu id="list1">
<f:selectItem itemLabel="Option 1" itemValue="1"></f:selectItem>
</h:selectOneMenu>
To select multiple option
<h:selectManyListbox id="list">
<f:selectItems value="#{optionBean.optionList}"></f:selectItem>
</h:selectManyListbox>