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

Info

methods

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

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.

Note that the widget does not perform any automatic sanitization of the passed content and script tags will be evaluated. In order to encode script tags as HTML entities, use #: # expressions in the Kendo UI templates.

<div id="notification"></div>
<script>
$("#notification").kendoNotification();

var notification = $("#notification").getKendoNotification();

// Show info notification with string message
notification.info("This is an informational message");

// Show info notification with object data
notification.info({
    title: "Information",
    message: "Your data has been saved successfully"
});
</script>
Not finding the help you need?
Contact Support