Types
The Notification provides the built-in "info", "success", "warning", and "error" Notification types.
You can use different templates and looks for each type. The built-in Notification types provide ready-to-use shorthand methods for display as well as built-in templates and styling. The names of the shorthand methods match the listed Notification types.
Starting with 2026 Q1 version when no
typeparameter is passed to theshowmethod, the Notification will be displayed with default colors (colourless). Previously, the default value of thetypeproperty wasinfo. If you need to acheive the previous appearance you can useinfomethod or explicitly passinfoas a parameter to theshowmethod.
The following example demonstrates the built-in Notification types. You can define an unlimited amount of custom notification types and corresponding templates.
@(Html.Kendo().Notification()
.Name("notification")
)