Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / form / forum-search.html
1 <html>
2 <head>
3     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
4     <title>ComboBox - Live Search</title>
5
6     <!-- ExtJS -->
7     <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
8     <script type="text/javascript" src="../../bootstrap.js"></script>
9
10     <!-- Shared -->
11     <link rel="stylesheet" type="text/css" href="../shared/example.css" />
12
13     <!-- Example -->
14     <script type="text/javascript" src="forum-search.js"></script>
15     <style type="text/css">
16         .search-item {
17             padding: 5px 10px;
18             white-space: normal;
19             color: #555;
20         }
21
22         .search-item h3 {
23             display: block;
24             font: inherit;
25             font-weight: bold;
26             color: #222;
27         }
28
29         .search-item h3 span {
30             float: right;
31             font-weight: normal;
32             margin:0 0 5px 5px;
33             width: 100px;
34             clear: none;
35         }
36
37         html, body {
38             border: 0;
39         }
40     </style>
41 </head>
42 <body>
43
44 <h1>Combo with Templates and Ajax</h1>
45
46 <p>This is a more advanced example that shows how you can combine <!--paging, -->Ext.Template and a
47 remote data store to create a "live search" feature. Try searching for terms like "form", or "grid".</p>
48
49 <p>The js is not minified so it is readable. See <a href="forum-search.js">forum-search.js</a>.</p>
50
51 </body>
52 </html>