New to Kendo UI for jQuery? Start a free 30-day trial
Types
Updated over 6 months ago
The Notification provides the "info", "success", "warning", and "error" built-in notification types.
The predefined Notifications enable you to apply different templates and looks for each type and provide ready-to-use shorthand display methods and styling functionalities. The shorthand method names match the listed notification types. If you do not specify a Notification type, the widget displays the "info" type. You can also define an unlimited amount of custom notification types and corresponding templates.
The following example demonstrates how to apply built-in notification types.
html
<span id="notification"></span>
<script>
$(function(){
var notificationElement = $("#notification");
notificationElement.kendoNotification();
var notificationWidget = notificationElement.data("kendoNotification");
// Display a "foo" warning message.
notificationWidget.show("foo", "warning");
// The above line is equivalent to:
notificationWidget.warning("foo");
// Display a "bar" information message.
notificationWidget.show("bar", "info");
// The above line is equivalent to:
notificationWidget.show("bar");
// and also to:
notificationWidget.info("bar");
});
</script>