File: spinner.html

package info (click to toggle)
libjs-extjs 3.4.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 53,188 kB
  • ctags: 3,384
  • sloc: php: 819; xml: 537; python: 60; sql: 44; makefile: 35
file content (61 lines) | stat: -rw-r--r-- 1,791 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Custom Spinner Widget Example</title>

    <!-- ** CSS ** -->
    <!-- base library -->
    <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />

    <!-- overrides to base library -->
    <link rel="stylesheet" type="text/css" href="../ux/css/Spinner.css" />

    <!-- page specific -->
    <style type="text/css">

    /* global css */
    body {
        padding:0 2em 3em;
    	font: normal 12px arial, helvetica, sans-serif;
    	color: #282828;
    }

    </style>


    <!-- ** Javascript ** -->
    <!-- ExtJS library: base/adapter -->
    <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>

    <!-- ExtJS library: all widgets -->
    <script type="text/javascript" src="../../ext-all.js"></script>

    <!-- overrides to base library -->

    <!-- extensions -->
    <script type="text/javascript" src="../ux/Spinner.js"></script>
    <script type="text/javascript" src="../ux/SpinnerField.js"></script>
    

    <!-- page specific -->
    <script type="text/javascript" src="spinner.js"></script>

</head>
<body>

    <h1>Custom Spinner Widget Example</h1>

    <p>This example demonstrates a Custom Spinner Widget</p> 

    <p>The Custom Spinner Widget utilizes the 
    <a href="../ux/Spinner.js">Ext.ux.Spinner</a>
    and
    <a href="../ux/SpinnerField.js">Ext.ux.form.SpinnerField</a>
    classes.</p>
    <p>The js is not minified so it is readable. See <a href="spinner.js">spinner.js</a>.</p>

	<div id="form-ct" style="margin-top:1em"></div>

</body>
</html>