ext.net上的浏览器关闭确认

时间:2018-05-31 22:16:00

标签: extjs ext.net

我想做的是以下

      window.onbeforeunload = function (e) {
          return 'Dialog text here.';
          Ext.Msg.confirm("Confirmación", "Seguro que quieres salir", function (btnText) {
              if (btnText === "yes") {                
                 App.direct.RegistrarAbandono();
              }
          }, this);
      };

也就是说,如果此人离开浏览器以便能够从服务器中删除或执行某些操作,并通知将对该窗体进行avandonar会产生一些后果的人,我希望如此。

非常感谢

1 个答案:

答案 0 :(得分:0)

尝试使用以下代码:

Ext.EventManager.on(window, "beforeunload", function (e) {
                 Write your code here
        }, this, {});