Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / grid / from-markup.js
diff --git a/examples/grid/from-markup.js b/examples/grid/from-markup.js
deleted file mode 100644 (file)
index 11b8629..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/*!
- * Ext JS Library 3.0.3
- * Copyright(c) 2006-2009 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
- */
-Ext.onReady(function(){\r
-    var btn = Ext.get("create-grid");\r
-    btn.on("click", function(){\r
-        btn.dom.disabled = true;\r
-        \r
-        // create the grid\r
-        var grid = new Ext.ux.grid.TableGrid("the-table", {\r
-            stripeRows: true // stripe alternate rows\r
-        });\r
-        grid.render();\r
-    }, false, {\r
-        single: true\r
-    }); // run once\r
-});