X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/chooser-example.html diff --git a/docs/source/chooser-example.html b/docs/source/chooser-example.html deleted file mode 100644 index ae266e0c..00000000 --- a/docs/source/chooser-example.html +++ /dev/null @@ -1,37 +0,0 @@ - - - The source code - - - - -
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'
-    });
-});
-
- - \ No newline at end of file