ExtJS中自定义组件并将事件暴露给调用者

/**
 * @example Image
 *
 * A Component subclass that adds a value to an image
 
*/
Ext.require('Ext.panel.Panel');

Ext.define('Ext.ux.Image', {
    extend: 'Ext.Component', // subclass Ext.Component
    alias: 'widget.managedimage', // this component will have an xtype of 'managedimage'
    autoEl: {
        tag: 'img',
        src: Ext.BLANK_IMAGE_URL,
        cls: 'my-managed-image'
    },

    // Add custom processing to the onRender phase.
    // Add a ‘load’ listener to the element.
    onRender: function () {
        this.autoEl = Ext.apply({}, this.initialConfig, this.autoEl);
        this.callParent(arguments);
        this.el.on('load', this.onLoad, this),                  //load不是img的事件
        this.el.on('click', this.onclick, this);
    },

    onLoad: function () {
        this.fireEvent('load', this);
    },

    onclick: function () {
        this.fireEvent('click', this);
    },

    setSrc: function (src) {
        if (this.rendered) {
            this.el.dom.src = src;                      //el是Ext.Element类的一个实例,应该指向中的是ExtJS组件的根结点
        } else {
            this.src = src;
        }
    },

    getSrc: function (src) {
        return this.el.dom.src || this.src;
    }
});

Ext.onReady(function () {

    var image = Ext.create('Ext.ux.Image');

    Ext.create('Ext.panel.Panel', {
        title: 'Image Panel',
        height: 200,
        renderTo: Ext.getBody(),
        items: [image]
    })

    image.on('load', function () {
        console.log('image loaded: ', image.getSrc());
    });

    image.on('click', function () {
        alert('click');
    });

    image.setSrc('http://www.sencha.com/img/sencha-large.png');

});
posted @ 2012-07-14 17:52  吴东雷  阅读(2398)  评论(0编辑  收藏  举报