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 b8d39b8..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/*!
- * Ext JS Library 3.3.1
- * Copyright(c) 2006-2010 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
-Ext.onReady(function(){
-    var btn = Ext.get("create-grid");
-    btn.on("click", function(){
-        btn.dom.disabled = true;
-        
-        // create the grid
-        var grid = new Ext.ux.grid.TableGrid("the-table", {
-            stripeRows: true // stripe alternate rows
-        });
-        grid.render();
-    }, false, {
-        single: true
-    }); // run once
-});