Im doing something like this inside the success block of an ajax call. The grid data is refreshed, but the alert ( as a test) as well as my pop up notification are not shown. Is this expected behavior, or am I doing something wrong.
success: function (result) {
var statementBatchDS = $('#StatementBatch').data().kendoGrid.dataSource;
statementBatchDS.data(result.Data);
//test
//var popupNotification = $("#popupNotification").data("kendoNotification");
//popupNotification.show("Batch post error", "error");
alert('made it and name=' + $("#popupNotification").attr('id'));
var d = new Date();
popupNotification.show(kendo.toString(d, 'HH:MM:ss.') + kendo.toString(d.getMilliseconds(), "000"), "error");
}