当前位置: 代码迷 >> Web前端 >> Ext.ux.grid.RowActions Destroy有关问题
  详细解决方案

Ext.ux.grid.RowActions Destroy有关问题

热度:172   发布时间:2012-11-23 00:03:29.0
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(){
	},
  相关解决方案