success
This is a shorthand method for show(data, "success")
Example
<div id="notification"></div>
<script>
$("#notification").kendoNotification();
var notification = $("#notification").getKendoNotification();
// Show success notification with string message
notification.success("Operation completed successfully!");
// Show success notification with object data
notification.success({
title: "Success",
message: "Your changes have been saved"
});
</script>
Parameters
data Object|String|Function
Required. The string content for the notification; or the object with the values for the variables inside the notification template; or the function, which returns the required string or an object.
In this article