我無法在「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 });
同樣的錯誤:-(
似乎是正確的我。你是否在控制檯中嘗試了第二個例子? – 2013-03-05 15:11:24