]> git.mxchange.org Git - jjobs-war.git/blob - web/WEB-INF/resources/tags/input/selection_box/personal_title_selection_box.tpl
Please cherry-pick:
[jjobs-war.git] / web / WEB-INF / resources / tags / input / selection_box / personal_title_selection_box.tpl
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition
3         xmlns="http://www.w3.org/1999/xhtml"
4         xmlns:f="http://java.sun.com/jsf/core"
5         xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
6         xmlns:p="http://primefaces.org/ui"
7         >
8
9         <p:selectOneRadio
10                 id="personalTitle"
11                 value="#{targetController.personalTitle}"
12                 required="true"
13                 requiredMessage="#{msg.FIELD_PERSONAL_TITLE_REQUIRED}"
14                 >
15
16                 <f:selectItems
17                         value="#{dataController.personalTitles}"
18                         var="personalTitle"
19                         itemValue="#{personalTitle}"
20                         itemLabel="#{msg[personalTitle.messageKey]}"
21                         />
22         </p:selectOneRadio>
23 </ui:composition>