chooser-example.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:1k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ Ext.onReady(function(){
  2.     var chooser, btn;
  3.     function insertImage(data){
  4.      Ext.DomHelper.append('images', {
  5.      tag: 'img', src: data.url, style:'margin:10px;visibility:hidden;'
  6.      }, true).show(true).frame();
  7.      btn.focus();
  8.     };
  9.     function choose(btn){
  10.      if(!chooser){
  11.      chooser = new ImageChooser({
  12.      url:'get-images.php',
  13.      width:515,
  14.      height:350
  15.      });
  16.      }
  17.      chooser.show(btn.getEl(), insertImage);
  18.     };
  19.     btn = new Ext.Button({
  20.     text: "Insert Image",
  21. handler: choose,
  22.         renderTo: 'buttons'
  23.     });
  24. });