首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

解决Ext的窗口关闭还占用内存的有关问题

2012-09-27 
解决Ext的窗口关闭还占用内存的问题/** ?解决Ext的窗口关闭还占用内存的问题**/Ext.Window.prototype.befo

解决Ext的窗口关闭还占用内存的问题

/**
?解决Ext的窗口关闭还占用内存的问题
**/
Ext.Window.prototype.beforeDestroy = function(){
??????? Ext.destroy(
???this.focusEl,? // 新增
???this.bwrap,?// 新增
??????????? this.resizer,
??????????? this.dd,
??????????? this.proxy,
??????????? this.mask
??????? );
??????? Ext.Window.superclass.beforeDestroy.call(this);
?
?this.focusEl=null;? // 新增
?this.bwrap=null;?// 新增
}

热点排行