I have an SelectItem Object array
SelectItem[] list;
<h:selectOneMenu value="#{Bean.id}">
<f:selectItems value="#{Bean.list}"/>
</h:selectOneMenu>
i can get id but how can i get label...
|
I have an SelectItem Object array
i can get id but how can i get label... |
|||
|
|
|
The item label won't be sent as request parameter, only the item value. This is by HTML specification. But you don't need to get it from the request at all. You have it already in your
In JSF 2.x / EL 2.2 you can use |
|||
|
|