ext Window点击右上角的关闭(Xbutton)加入监控事件

使用场景:关闭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");
 }


版权声明:本文博主原创文章,博客,未经同意不得转载。

你可能感兴趣的:(ext Window点击右上角的关闭(Xbutton)加入监控事件)