使用场景:关闭window的时候增加监听事件。
正确的使用方式:
addwin = new Ext.Window({
title : '新增',
closable : true,
width : 500,
autoHeight: true,
border : false,
plain : true,
modal : true,
layout : 'fit',
bodyStyle : 'padding:5px;',
maximizable : false,// 禁止最大化
closeAction : 'hide',
closable : true,// 是否有关闭
collapsible : true,// 可折叠
iconCls : 'bind',
listeners : {'hide':{fn: makesure}},
items : [addbindP]
});
function makesure(){
alert("123");
}