Is it possible to preselect one of the options from the select menu?
I have this UI Component:
<h:selectOneMenu value="#{authenticateController.country}">
<f:selectItems value="#{constants.countrySelectMenu}" />
</h:selectOneMenu>
The values of #{constants.countrySelectMenu}
are a list of country ID - country name pairs.
Is there a way to render the list with a preselected value or at least is there a work-around to get this done?