X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/docs/source/chooser-example.html diff --git a/docs/source/chooser-example.html b/docs/source/chooser-example.html new file mode 100644 index 00000000..ae266e0c --- /dev/null +++ b/docs/source/chooser-example.html @@ -0,0 +1,37 @@ + + + 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