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