当前位置: 代码迷 >> JavaScript >> extjs 4.1.1 controller 监听button的有关问题
  详细解决方案

extjs 4.1.1 controller 监听button的有关问题

热度:626   发布时间:2013-01-11 11:57:35.0
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'); }
        }
    }
});[
  相关解决方案