remotegroupgrid.html 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Remote Grouped Grid Example</title>
  5. <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css"/>
  6. <link rel="stylesheet" type="text/css" href="../shared/example.css" />
  7. <!-- GC -->
  8. <script type="text/javascript" src="../../ext-all.js"></script>
  9. <!-- page specific -->
  10. <script type="text/javascript" src="remotegroupgrid.js"></script>
  11. <style type="text/css">
  12. .icon-grid {
  13. background-image:url(../shared/icons/fam/grid.png) !important;
  14. }
  15. .icon-clear-group {
  16. background-image:url(../shared/icons/fam/control_rewind.png) !important;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <h1>Remote Grouped Grid Example</h1>
  22. <p>This example illustrates how to use the grouping feature of the Grid with grouping performed by the server.</p>
  23. <p>Records added to the grid are auto-synched to the server, and upon successful save, the server is invoked to group the data correctly.</p>
  24. <p>Note that the js is not minified so it is readable. See <a href="remotegroupgrid.js">remotegroupgrid.js</a>.</p>
  25. </body>
  26. </html>