]> git.mxchange.org Git - jjobs-war.git/blob - web/WEB-INF/resources/tags/table_rows/landline_input_table_row.tpl
Updated copyright year
[jjobs-war.git] / web / WEB-INF / resources / tags / table_rows / landline_input_table_row.tpl
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition
3         xmlns="http://www.w3.org/1999/xhtml"
4         xmlns:core="http://mxchange.org/jsf/core/widgets"
5         xmlns:f="http://java.sun.com/jsf/core"
6         xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
7         xmlns:p="http://primefaces.org/ui"
8         >
9
10         <p:row rendered="#{empty rendered or rendered == true}">
11                 <p:outputLabel for="landLineNumber" value="#{labelMessage}" />
12
13                 <p:column>
14                         <core:outputCountrySelector id="landLineCountry" styleClass="select" value="#{targetController.landLineCountry}" />
15                         <p:inputText id="landLineAreaCode" size="5" maxlength="10" value="#{targetController.landLineAreaCode}">
16                                 <f:validator validatorId="PhoneNumberValidator" />
17                         </p:inputText>
18                         <p:inputText id="landLineNumber" size="10" maxlength="20" value="#{targetController.landLineNumber}">
19                                 <f:validator validatorId="PhoneNumberValidator" />
20                         </p:inputText>
21                 </p:column>
22
23                 <p:column>
24                         <p:message for="landLineAreaCode" />
25                         <p:message for="landLineNumber" />
26                 </p:column>
27         </p:row>
28 </ui:composition>