【ExtJS】Cannot call method 'removeCls'或'addCls' of null

使用已经销毁的组件,则会报错:Cannot call method 'removeCls'或'addCls' of null


请检查操作时报此错误的组件生命周期,如window,如果需要复用,应设置closeAction为hide。

Ext.create('Ext.window.Window', {
	closeAction : '<span style="color:#ff0000;">hide</span>',
	...
});


你可能感兴趣的:(【ExtJS】Cannot call method 'removeCls'或'addCls' of null)