Hi,
I need to be able to show some notifications that auto hide after 5 seconds and others that don't auto hide. I am achieving this by using this code when I want to show a notification for 5 seconds:
01.var fadingnotification = $("#fadingnotification").kendoNotification({02.    position: {03.        pinned: true,04.        bottom: 60,05.        right: 3006.    },07.    stacking: "up",08.    autoHideAfter: 5000,09.    templates: [{10.            type: "stickyinfonodismiss",11.            template: $("#stickyInfoNoDismissTemplate").html()12.        }, {13.            type: "stickyinfo",14.            template: $("#stickyInfoTemplate").html()15.        }, {16.            type: "info",17.            template: $("#infoTemplate").html()18.    }]19.}).data("kendoNotification");20. 21.fadingnotification.show({22.    message: msgToDisplay23.}, "info");and using the same code but with "autoHideAfter: 0" for the ones that I want to display without hiding.
The problem I have is that this effectively initiates a new notification GUID each time so the notifications start again at the bottom of the screen each time even if there are already notifications on screen.
Ideally I want to just change the autoHideAfter option without initialising a new notification and therefore a new GUID.
Any ideas?
Thanks,
Mark.