~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to j2ee/samples/samples_src/JsfJpaCrud/web/manufacturer/Edit.jsp

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<%@page contentType="text/html"%>
 
2
<%@page pageEncoding="UTF-8"%>
 
3
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
 
4
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
 
5
<html>
 
6
    <head>
 
7
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 
8
        <title>Edit Manufacturer</title>
 
9
    </head>
 
10
    <body>
 
11
        <f:view>
 
12
            <h:messages errorStyle="color: red" infoStyle="color: green" layout="table"/>
 
13
            <h1>Edit manufacturer</h1>
 
14
            <h:form>
 
15
                <h:inputHidden value="#{manufacturer.manufacturer}" immediate="true"/>
 
16
                <h:panelGrid columns="2">
 
17
                    <h:outputText value="ManufacturerId:"/>
 
18
                    <h:outputText value="#{manufacturer.manufacturer.manufacturerId}" title="ManufacturerId" />
 
19
                    <h:outputText value="Name:"/>
 
20
                    <h:inputText id="name" value="#{manufacturer.manufacturer.name}" title="Name" />
 
21
                    <h:outputText value="Addressline1:"/>
 
22
                    <h:inputText id="addressline1" value="#{manufacturer.manufacturer.addressline1}" title="Addressline1" />
 
23
                    <h:outputText value="Addressline2:"/>
 
24
                    <h:inputText id="addressline2" value="#{manufacturer.manufacturer.addressline2}" title="Addressline2" />
 
25
                    <h:outputText value="City:"/>
 
26
                    <h:inputText id="city" value="#{manufacturer.manufacturer.city}" title="City" />
 
27
                    <h:outputText value="State:"/>
 
28
                    <h:inputText id="state" value="#{manufacturer.manufacturer.state}" title="State" />
 
29
                    <h:outputText value="Zip:"/>
 
30
                    <h:inputText id="zip" value="#{manufacturer.manufacturer.zip}" title="Zip" />
 
31
                    <h:outputText value="Phone:"/>
 
32
                    <h:inputText id="phone" value="#{manufacturer.manufacturer.phone}" title="Phone" />
 
33
                    <h:outputText value="Fax:"/>
 
34
                    <h:inputText id="fax" value="#{manufacturer.manufacturer.fax}" title="Fax" />
 
35
                    <h:outputText value="Email:"/>
 
36
                    <h:inputText id="email" value="#{manufacturer.manufacturer.email}" title="Email" />
 
37
                    <h:outputText value="Rep:"/>
 
38
                    <h:inputText id="rep" value="#{manufacturer.manufacturer.rep}" title="Rep" />
 
39
                </h:panelGrid>
 
40
                <h:commandLink action="#{manufacturer.edit}" value="Save"/>
 
41
                <br>
 
42
                <h:commandLink action="manufacturer_list" value="Show All Manufacturer"/>
 
43
                <br>
 
44
                <a href="/JsfJpaCrud/index.jsp">Back to index</a>
 
45
            </h:form>
 
46
        </f:view>
 
47
    </body>
 
48
</html>