Ext.ux.grid.RowActions Destroy问题

今天发现Ext.ux.grid.RowActions使用的时候,如果gridpanl放在tabpanel的二级panel中。关闭该tab页,会报错。错误内容为:Ext.grid.ColumnModel无法调用Ext.ux.grid.RowActions的destroy方法。
在Ext.ux.grid.RowActions中添加空的destroy可解决。
Ext.extend(Ext.ux.grid.RowActions, Ext.util.Observable, {
	destroy:function(){
	},

你可能感兴趣的:(ext)