hideOnClick Boolean (default: true)

Determines whether notifications can be hidden by clicking anywhere on their content.

Example - disable hideOnClick

<span id="notification"></span>
<script>
$("#notification").kendoNotification({
    hideOnClick: false
});
$("#notification").getKendoNotification().show("Kendo Notification");
</script>
In this article