X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/examples/view/chooser-example.js diff --git a/examples/view/chooser-example.js b/examples/view/chooser-example.js index 449bab11..682bd7b4 100644 --- a/examples/view/chooser-example.js +++ b/examples/view/chooser-example.js @@ -1,40 +1,30 @@ -/* - * Ext JS Library 2.2.1 - * Copyright(c) 2006-2009, Ext JS, LLC. - * licensing@extjs.com - * - * http://extjs.com/license - */ - -/* - * Ext JS Library 2.0 - * Copyright(c) 2006-2007, Ext JS, LLC. - * licensing@extjs.com - * - * http://extjs.com/license - */ - +/*! + * Ext JS Library 3.0.0 + * Copyright(c) 2006-2009 Ext JS, LLC + * licensing@extjs.com + * http://www.extjs.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, + width:515, height:350 }); } chooser.show(btn.getEl(), insertImage); }; - + btn = new Ext.Button({ text: "Insert Image", handler: choose,