ext.window.messagebox を拡張する新しいビュー クラスを作成しましたが、表示しようとするとエラーが発生します。
Uncaught TypeError: Cannot call method 'setVisible' of null
私のコード:
Ext.define('view.forms.MyBox', {
extend : 'Ext.window.MessageBox',
alias : 'widget.info',
xtype : 'forms-info',
resizable : false,
//closable : false --> removed
layout : 'vbox',
padding : 5,
width : 400,
height : 160,
showMessage: function() {
console.log('show message')
var me = this;
me.show({
title: 'Title foo!',
msg: 'test',
closable : false, // added here
icon: Ext.MessageBox.WARNING,
});
}
}); //eoc myBox
これの考えられる原因は何ですか?