Hi,
So I have a notification declared in my HTML page like this :
<div kendo-notification="welcomeNotification"
style="display: none"
k-position="{ top: 0, right: 0, pinned: true }"
k-autohideafter="8000"
k-height="'100px'"
k-options="notificationOpt"
k-width="'300px'"
k-animation="{open:{ effects: 'slideIn:left'},close:{effects: 'slideIn:left',reverse:true}}"
k-stacking="'down'">
</div>
And in my controller I show the notification this way :
$scope.welcomeNotification.show("my message", "info");
It's working fine but I wanted to add a template to my notification like the example in the kendo website but I cannot find the way to do it with angular.js and kendo ui.
So I have a notification declared in my HTML page like this :
<div kendo-notification="welcomeNotification"
style="display: none"
k-position="{ top: 0, right: 0, pinned: true }"
k-autohideafter="8000"
k-height="'100px'"
k-options="notificationOpt"
k-width="'300px'"
k-animation="{open:{ effects: 'slideIn:left'},close:{effects: 'slideIn:left',reverse:true}}"
k-stacking="'down'">
</div>
And in my controller I show the notification this way :
$scope.welcomeNotification.show("my message", "info");
It's working fine but I wanted to add a template to my notification like the example in the kendo website but I cannot find the way to do it with angular.js and kendo ui.