row-editing.html 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Row Editing 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. <link rel="stylesheet" type="text/css" href="../ux/css/CheckHeader.css" />
  8. <!-- GC -->
  9. <script type="text/javascript" src="../../ext-all.js"></script>
  10. <script type="text/javascript" src="row-editing.js"></script>
  11. <style type="text/css">
  12. .employee-add {
  13. background-image: url('../shared/icons/fam/user_add.gif') !important;
  14. }
  15. .employee-remove {
  16. background-image: url('../shared/icons/fam/user_delete.gif') !important;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <h1>Row Editing Grid Example</h1>
  22. <p>This example shows how to create a grid with inline row based editing using the row editing plugin.</p>
  23. <p>Note that the js is not minified so it is readable. See <a href="row-editing.js">row-editing.js</a>.</p>
  24. <div id="editor-grid"></div>
  25. </body>
  26. </html>