custom.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  4. <title>Custom Fields</title>
  5. <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
  6. <!-- GC -->
  7. <!-- LIBS -->
  8. <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
  9. <!-- ENDLIBS -->
  10. <script type="text/javascript" src="../../ext-all.js"></script>
  11. <script type="text/javascript" src="SearchField.js"></script>
  12. <script type="text/javascript" src="custom.js"></script>
  13. <link rel="stylesheet" type="text/css" href="combos.css" />
  14. <style type="text/css">
  15. #search-results a {
  16. color: #385F95;
  17. font:bold 11px tahoma, arial, helvetica, sans-serif;
  18. text-decoration:none;
  19. }
  20. #search-results a:hover {
  21. text-decoration:underline;
  22. }
  23. #search-results .search-item {
  24. padding:5px;
  25. }
  26. #search-results p {
  27. margin:3px !important;
  28. }
  29. #search-results {
  30. border-bottom:1px solid #ddd;
  31. margin: 0 1px;
  32. height:300px;
  33. overflow:auto;
  34. }
  35. #search-results .x-toolbar {
  36. border:0 none;
  37. }
  38. </style>
  39. <!-- Common Styles for the examples -->
  40. <link rel="stylesheet" type="text/css" href="../examples.css" />
  41. </head>
  42. <body>
  43. <script type="text/javascript" src="../examples.js"></script><!-- EXAMPLES -->
  44. <p>
  45. <b>Custom Form Fields</b><br />
  46. Ext provides many types of form fields to build interactive and rich forms. However, it also
  47. provides a complete framework for building new types of fields quickly. The search field below
  48. is an example.
  49. </p>
  50. <p>The js is not minified so it is readable. See <a href="custom.js">custom.js</a>.</p>
  51. <div style="width:600px;" id="search-panel">
  52. </div>
  53. </body>
  54. </html>