Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / view / chooser-example.js
diff --git a/examples/view/chooser-example.js b/examples/view/chooser-example.js
deleted file mode 100644 (file)
index e74cc71..0000000
+++ /dev/null
@@ -1,33 +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 chooser, btn;
-
-    function insertImage(data){
-       Ext.DomHelper.append('images', {
-               tag: 'img', src: data.url, style:'margin:10px;visibility:hidden;'
-       }, true).show(true).frame();
-       btn.focus();
-    };
-
-    function choose(btn){
-       if(!chooser){
-               chooser = new ImageChooser({
-                       url:'get-images.php',
-                       width:515,
-                       height:350
-               });
-       }
-       chooser.show(btn.getEl(), insertImage);
-    };
-
-    btn = new Ext.Button({
-           text: "Insert Image",
-               handler: choose,
-        renderTo: 'buttons'
-    });
-});