I'd like to dynamically create stacked notifications in codebehind. I tried programmatically creating an instance of RadNotifcation using something like:
When it fires, though, a generic object error is thrown. Is it possible to programmically or dynamically create notifications?
What I'm trying to do is retreive notification text from a database. But I want to display multiple notifications until the user closes the notification window.
Dim RadNotification1 As RadNotification = New RadNotificationRadNotification1.EnableShadow = TrueRadNotification1.EnableRoundedCorners = TrueRadNotification1.ShowTitleMenu = FalseRadNotification1.Text = "You have new messages!<br>date: " & DateTime.Now.ToShortTimeString & "<br><br>"RadNotification1.Show()When it fires, though, a generic object error is thrown. Is it possible to programmically or dynamically create notifications?
What I'm trying to do is retreive notification text from a database. But I want to display multiple notifications until the user closes the notification window.