File: custom-access.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 (101 lines) | stat: -rw-r--r-- 2,959 bytes parent folder | download | duplicates (4)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Custom Fields</title>
    <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
    <link rel="stylesheet" type="text/css" href="../../resources/css/xtheme-access.css" />

    <!-- GC -->
 	<!-- LIBS -->
 	<script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
 	<!-- ENDLIBS -->

    <script type="text/javascript" src="../../ext-all.js"></script>

    <script type="text/javascript" src="../ux/SearchField.js"></script>
    <script type="text/javascript" src="custom-access.js"></script>
    <link rel="stylesheet" type="text/css" href="combos.css" />

    <style type="text/css">
    
        body > p {
            color: black;
        }
        
        .search-item {
            border-color: none #1A1A1C #111111 none;
            border-style: none solid solid none;
            border-width: 0 0 1px 0;
            color: #fff;
            font: normal 14px tahoma, arial, helvetica, sans-serif;
        }
        
        .search-item {

        }

        .search-item h3 a {
            color: #fff;
            font: bold 15px tahoma, arial, helvetica, sans-serif;
            /* text-decoration:none; */
        }
        
        .search-item h3 a:hover {
            color: #ddd;
        }
        
        .search-item h3 span {
            color: #fff;
            margin: 0 0 5px 15px;
            width: 110px;
        }
        
        .x-small-editor .x-form-text {
            height: 26px;
        }
        .x-small-editor .x-form-field-wrap .x-form-trigger {
            height: 24px;
        }
        
        .x-toolbar td, .x-toolbar span, .x-toolbar input, .x-toolbar div, .x-toolbar select, .x-toolbar label {
            font-size: 15px;
        }
        
        #search-results a:hover {
            text-decoration:underline;
        }
        #search-results .search-item {
            padding:5px;
        }
        #search-results p {
            margin:3px !important;
        }
        #search-results {
            border-bottom:1px solid #ddd;
            margin: 0 1px;
            height:600px;
            overflow:auto;
        }
        #search-results .x-toolbar {
            border:0 none;
        }
    </style>

    <!-- Common Styles for the examples -->
    <link rel="stylesheet" type="text/css" href="../shared/examples.css" />
</head>
<body>
<script type="text/javascript" src="../shared/examples.js"></script><!-- EXAMPLES -->
<p>
    <b>Custom Form Fields</b><br />
    Ext provides many types of form fields to build interactive and rich forms. However, it also
    provides a complete framework for building new types of fields quickly. The search field below
    is an example.
</p>
<p>The js is not minified so it is readable. See <a href="custom.js">custom.js</a>.</p>

<div style="width:600px;" id="search-panel">
</div>

</body>
</html>