Java Reference
In-Depth Information
50 <h:outputLabel value="State"/>
51 <h:selectOneMenu id="stateSelectOneMenu"
52 value="#{addressRegistration.state}">
53 <f:selectItem itemLabel="Georgia-GA" itemValue="GA" />
54 <f:selectItem itemLabel="Oklahoma-OK" itemValue="OK" />
55 <f:selectItem itemLabel="Indiana-IN" itemValue="IN"/>
56 </h:selectOneMenu>
57 <h:outputLabel value="Zip"/>
58 <h:inputText id="zipInputText"
59 value="#{addressRegistration.zip}"/>
60 </h:panelGrid>
61
62 <!-- Use command button -->
63 <h:commandButton value="Register"
64
bind state
bind zip
action="#{addressRegistration.processSubmit()}"/>
process register
65 <br />
66 <h:outputText escape="false" style="color:red"
67 value="#{addressRegistration.requiredFields}" />
68 </h:form>
69 </h:body>
70 </html>
L ISTING 33.17
ConfirmAddress.xhtml
1 <?xml version='1.0' encoding='UTF-8' ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml"
5 xmlns:h="http://xmlns.jcp.org/jsf/html">
6 <h:head>
7 <title>Confirm Student Registration</title>
8 </h:head>
9 <h:body>
10 <h:form>
11 <h:outputText escape="false" style="color:red"
12 value="#{registration1.input}" />
13 <h:panelGrid columns="2">
14 <h:commandButton value="Confirm"
15 action = "#{registration1.storeStudent()}"/>
16 <h:commandButton value="Go Back"
17 action = "AddressRegistration"/>
18 </h:panelGrid>
19 </h:form>
20 </h:body>
21 </html>
process confirm
go to AddressRegistration
page
L ISTING 33.18
AddressStoredStatus.xhtml
1 <?xml version='1.0' encoding='UTF-8' ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml"
5 xmlns:h="http://xmlns.jcp.org/jsf/html">
6 <h:head>
7 <title>Address Stored?</title>
8 </h:head>
9 <h:body>
10 <h:form>
11 <h:outputText escape="false" style="color:green"
12
value="#{registration1.status}" />
display status
 
 
Search WWH ::




Custom Search