New to Kendo UI for jQueryStart a free 30-day trial

Success

methods

This is a shorthand method for show(data, "success")

Parameters:dataObject|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.

<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>
Not finding the help you need?
Contact Support