FormDashboard.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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>Form with embedded Grid</title>
  6. <!-- ExtJS -->
  7. <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
  8. <!-- Shared -->
  9. <link rel="stylesheet" type="text/css" href="../shared/example.css" />
  10. <!-- GC -->
  11. <style type="text/css">
  12. .x-panel-framed {
  13. padding: 0;
  14. }
  15. </style>
  16. <script type="text/javascript" src="../../ext-all.js"></script>
  17. <!-- Example -->
  18. <script type="text/javascript" src="FormDashboard.js"></script>
  19. </head>
  20. <body>
  21. <h1>Dynamic Form, Grid and Charts</h1>
  22. <p>
  23. Showing companies information in a grid. Selecting a row will highlight
  24. the bar corresponding to that company and fill in the form with the company
  25. data. A radar chart will show the company information. You can update the
  26. information in the form to see it change live in the grid, bar chart and radar charts.
  27. </p>
  28. </body>
  29. </html>