How to reload window after Messenger().run() message closes?
Opened this issue · 0 comments
larikitty commented
I'm writing an MVC app and I really need a reload window after message (both error and success) closes.
How can I achieve this?
Actually, I'm trying this code on my button click, but no luck:
Messenger().run({
successMessage: 'Record Removed!',
errorMessage: 'Error',
progressMessage: 'Removing record...',
events: {
"click": function () {
window.location.reload();
}
}
}, {
method: 'DELETE',
url: $(this).data('url'),
error: function (jqXHR, textStatus, errorThrown) {
return errorThrown;
}
});