PageRenderTime 23ms CodeModel.GetById 19ms app.highlight 3ms RepoModel.GetById 1ms app.codeStats 0ms

/ext-4.1.0_b3/examples/form/checkout.html

https://bitbucket.org/srogerf/javascript
HTML | 33 lines | 20 code | 9 blank | 4 comment | 0 complexity | bed20710f92a439543d5ecfcf7720128 MD5 | raw file
 1<html>
 2<head>
 3    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 4    <title>Checkout Form</title>
 5
 6    <!-- ExtJS -->
 7    <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
 8    <script type="text/javascript" src="../../ext-all.js"></script>
 9
10    <!-- Shared -->
11    <link rel="stylesheet" type="text/css" href="../shared/example.css" />
12
13    <!-- GC -->
14
15    <script type="text/javascript" src="../shared/states.js"></script>
16
17    <!-- Example -->
18    <script type="text/javascript" src="checkout.js"></script>
19</head>
20<body>
21
22    <h1>Checkout Form</h1>
23
24    <p>
25        This shows an example of a common shopping cart checkout form. It demonstrates uses of FieldContainer
26        and various layouts for arranging and aligning fields, ComboBox fields for state and month selection,
27        and listening to change events to automatically copy values from Mailing Address to Billing Address fields.
28    </p>
29
30    <p>The js is not minified so it is readable. See <a href="checkout.js">checkout.js</a>.</p>
31
32</body>
33</html>