日期:2014-05-16  浏览次数:20365 次

extjs 4.1.1 controller 监听button的问题
我想在controller里监听一个window下的form中的button,可是监听不到click事件,请问该怎么做?
extjs?controller

------解决方案--------------------
code=javascript][/code]
new Ext.panel.Panel({
    width: 400,
    height: 200,
    dockedItems: [{
        xtype: 'toolbar'
    }],
    listeners: {
        click: {
            element: 'el', //bind to the underlying el property on the panel
            fn: function(){ console.log('click el'); }
        },
        dblclick: {
            element: 'body', //bind to the underlying body property on the panel
            fn: function(){ console.log('dblclick body'); }
        }
    }
});[