What I want to do is the following
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);
};
that is, I want that if the person leaves the browser to be able to delete or do some action from the server and notify the person who will have some consequences for avandonar the form.
thank you very much