Skip to content

Instantly share code, notes, and snippets.

@prule
Created August 17, 2013 08:48
Show Gist options
  • Select an option

  • Save prule/6255965 to your computer and use it in GitHub Desktop.

Select an option

Save prule/6255965 to your computer and use it in GitHub Desktop.
Sample Facelets code rendering a PrimeFaces selectOneMenu component
<p:selectOneMenu id="state" value="#{myBean.state}">
<f:selectItem itemLabel="- Select One -" itemValue=""/>
<f:selectItems value="#{optionsBean.states}" var="item"
itemLabel="#{item.name}"
itemValue="#{item}"/>
</p:selectOneMenu>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment