ExtJS弹出窗体的点击右上角关闭事件

//新增会计期间
 function openAddDialog(){

//使弹出窗体显示在最前面
  Ext.useShims=true;
       var win=new Ext.Window(
          {title:"新增",
              width:320,
              height:250,
              html:addDialogStr,
              modal:true,
              buttons:[{
               text:"确认",handler:function(){
              alert("确认");

             //关闭打开的窗体

               win.close();

              }, {
               text:"取消",handler:function(){
               win.close();
               }
              }]
          }); 
         win.show();
       }
    //点击右上角的关闭按钮后

     win.on("close",function(){
      alert("关闭窗体");

     });
 }

你可能感兴趣的:(ExtJS技术)