public_html\tabular.jsp
06-Apr-2005 11:59:56
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3 <%@ page contentType="text/html;charset=ISO-8859-1"%>
4 <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
5 <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
6 <f:view>
7 <html>
8 <head>
9 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
10 <title>
11 Tabular Summary
12 </title>
13 </head>
14 <body>
15 <h:form>
16 <h:dataTable rows="5" value="#{neighbors.contacts}" var="currentRow"
17 binding="#{tabularBB.dataTable}">
18 <h:column>
19 <f:facet name="header">
20 <h:outputText value="First Name"/>
21 </f:facet>
22 <h:commandLink action="#{tabularBB.editLinkAction}">
23 <h:outputText value="#{currentRow.firstName}"/>
24 </h:commandLink>
25 </h:column>
26 <h:column>
27 <f:facet name="header">
28 <h:outputText value="Last Name"/>
29 </f:facet>
30 <h:commandLink action="#{tabularBB.editLinkAction}">
31 <h:outputText value="#{currentRow.lastName}"/>
32 </h:commandLink>
33 </h:column>
34 </h:dataTable>
35 <h:commandButton value="New"
36 action="#{tabularBB.newButtonAction}"/>
37 </h:form>
38 </body>
39 </html>
40 </f:view>