button Boolean
(default: false)
Determines whether the notifications will include a hide button. This setting works with the built-in templates only.
Example - enable hide buttons
<span id="notification"></span>
<script>
$("#notification").kendoNotification({
button: true
});
$("#notification").getKendoNotification().show("Kendo Notification");
</script>