I want to make a selectOneMenu dropdown so I can select a status on my question. Is it possible to make the f:selectItem more flexible considering what happens if the order of the enums changes, and if the list was large? And could I do this better? And is it possible to automatically “select” the item that the question have?
Enum class
public enum Status {
SUBMITTED,
REJECTED,
APPROVED
}
Question entity
@Enumerated(EnumType.STRING)
private Status status;
JSF
<div class="field">
<h:outputLabel for="questionStatus" value="Status" />
<h:selectOneMenu id="questionStatus" value="#{bean.question.status}" >
<f:selectItem itemLabel="Submitted" itemValue="0" />
<f:selectItem itemLabel="Rejected" itemValue="1" />
<f:selectItem itemLabel="Approved" itemValue="2" />
</h:selectOneMenu>
<hr />
</div>
JSF has a builtin converter for
enum, so this should do:with
(note: since JSF 2.0 there’s no need anymore to provide a
SelectItem[]orList<SelectItem>, aT[]andList<T>are accepted as well and you can access the current item byvarattribute)If you happen to use JSF utility library OmniFaces, then you could use
<o:importConstants>instead of a bean.If you intend to control the labels as well, you could add them to the
Statusenum:with
Or, better, make the enum value a property key of a localized resource bundle (EL 3.0 required):
with this in a properties file associated with resource bundle
#{text}