Advertisement
ninofelino

Omnnifaces

Jul 22nd, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.73 KB | None | 0 0
  1. xmlns:o="http://omnifaces.org/ui"
  2. xmlns:of="http://omnifaces.org/functions"
  3.  
  4. <h:selectOneMenu value="#{bean.selectedItem}" converter="omnifaces.SelectItemsConverter">
  5.     <f:selectItems value="#{bean.availableItems}" />
  6. </h:selectOneMenu>
  7.  
  8.  <h:outputLabel for="iterator" value="Items with iterator: " />
  9.         <h:selectOneMenu id="iterator" value="#{selectItemsBean.selectedEntity}" converter="omnifaces.SelectItemsIndexConverter">
  10.             <f:selectItem itemValue="#{null}" itemLabel="Choose item" noSelectionOption="true" />
  11.             <f:selectItems value="#{selectItemsBean.exampleEntities}" var="entity" itemLabel="#{entity.value}" itemValue="#{entity}" />
  12.             <f:ajax render="selected_item" />
  13.       </h:selectOneMenu>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement