Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / grid / row-editing.html
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     <script type="text/javascript" src="../../bootstrap.js"></script>
9
10     <script type="text/javascript" src="row-editing.js"></script>
11
12     <style type="text/css">
13         .employee-add {
14             background-image: url('../shared/icons/fam/user_add.gif') !important;
15         }
16
17         .employee-remove {
18             background-image: url('../shared/icons/fam/user_delete.gif') !important;
19         }
20     </style>
21 </head>
22 <body>
23     <h1>Row Editing Grid Example</h1>
24     <p>This example shows how to create a grid with inline row based editing using the row editing plugin.</p>
25     <p>Note that the js is not minified so it is readable. See <a href="row-editing.js">row-editing.js</a>.</p>
26     <div id="editor-grid"></div>
27 </body>
28 </html>