Is it possible to trigger the notification show() on the call back update function? Especially when the notification was created dynamically.
RadNotification notification = new RadNotification(); notification.LoadContentOn = Telerik.Web.UI.NotificationLoad.TimeInterval; notification.UpdateInterval = 20000;notification.CallbackUpdate +=_notification_CallbackUpdateOnTime; protected void _notification_CallbackUpdateOnTime(object sender, RadNotificationEventArgs e) { if( <some condition>) { ((Telerik.Web.UI.RadNotification)(sender)).Show(); } }