我无法使用“on” Mehotd 注册任何事件。
未捕获的类型错误:无法调用未定义的“on”方法
Ext.define('faragoo.view.Main', {
extend: 'Ext.Container',
alias: 'widget.stream',
xtype: 'stream',
id : 'stream',
requires: [
'Ext.TitleBar',
'Ext.form.Panel'
],
initialize: function () {
this.on('afterrender', function() { alert('rendered'); } );
}
}
这个简单的例子也不起作用:
Ext.Viewport.on('orientationchange', function() { console.log("orientationchange"); }, this, {buffer: 50 });
同样的错误:-(