Greeting All,
On Kendo Grid requestEnd is that possible if I call kendo notification when successful updating record?
In this Demo I try to implement it, but somehow after I updated to record it keep buffering and not displaying the notification.
Can someone help me to solve this problem? Thank you in advance!
I include the function just in case:
function KendoAlert(content) {
$("<div></div>").kendoAlert({
title: "Messages!",
content: content
}).data("kendoAlert").open();
}
function KendoNotify(message) {
notification.show({
message: message
}, "upload-success");
}
function onRequestEnd(e) {
debugger;
if (e.type == "update" && !e.response.Errors) {
KendoNotify("Update Done!");
//KendoAlert("Update Done!");
}
}