Java Reference
In-Depth Information
inputStyle="width:100px;"
navigator="true"/>
</h:panelGrid>
</p:tab>
<p:tab title="Address">
<h:panelGrid columns="2">
<h:outputLabel for="line1" value="Line
1"
styleClass="requiredLbl"/>
<h:inputText id="line1"
value="#{customer.
addrLine1}"
required="true"/>
<h:outputLabel for="line2" value="Line
2"
styleClass="optionalLbl"/>
<h:inputText id="line2"
value="#{customer.
addrLine2}"/>
<h:outputLabel for="city" value="City"
styleClass="requiredLbl"/>
<h:inputText id="city"
value="#{customer.
addrCity}"
required="true"/>
<h:outputLabel for="state"
value="State"
styleClass="requiredLbl"/>
<h:selectOneMenu id="state"
required="true"
value="#{customer.addrState}">
<f:selectItem itemValue=""
itemLabel=""/>
<f:selectItem itemValue="AL"
itemLabel="Alabama"/>
<f:selectItem itemValue="AK"
itemLabel="Alaska"/>
<f:selectItem itemValue="AZ"
itemLabel="Arizona"/>
<f:selectItem itemValue="AR"
itemLabel="Arkansas"/>
<!-- other states omitted for
 
Search WWH ::




Custom Search