Using a Panel Component for Layout
The JSP pages for the other two views follow the same pattern as the first one, as shown in Example 9-3 and Example 9-4.
<%@ page contentType="text/html" %> <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <f:view> <html> <body> <h2>Language:</h2> <h:form><h:panelGrid columns="2">
<h:outputText value="Language:" /> <h:selectOneRadio value="#{userProfile.locale}"> <f:selectItem itemValue="sv" itemLabel="Swedish"/> <f:selectItem itemValue="en" itemLabel="English"/> </h:selectOneRadio></h:panelGrid>
<h:commandButton value="Previous"
immediate="true" action="previous" />
<h:commandButton value="Next"
action="#{userHandler.updateProfile}" />
<h:commandButton value="Cancel"
immediate="true" action="cancel" />
</h:form> </body> </html> </f:view>
<%@ page contentType="text/html" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<f:view>
<html>
<body>
<h2>Fonts:</h2>
<h:form>
<h:panelGrid columns="2">
<h:outputText value="Font style:" /> <h:selectOneMenu value="#{userProfile.fontStyle}"> <f:selectItem itemValue="serif" itemLabel="Serif"/> <f:selectItem itemValue="san-serif" itemLabel="San-Serif"/> ...
Get JavaServer Faces now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.