Hello,
I'm encountering a smaal issue: (in fireFox, but I think Chrome too)
In the page_Load I do this:
So, say I start the page at 11:00, I want to see the notification at 11:02
But during this time I do some PostBacks, until 11:01, what should reset the RadNotification1 to 11:03 and the text in the label to "11:03". Well.. It doesn't...
Although the code is executed (breakpoint) and the new timer values are added and the text was changed, I still get a message at 11:02 with the label text "11:02".
How can I change this behaviour?
Kind regards and thanks in advance,
Erik
I'm encountering a smaal issue: (in fireFox, but I think Chrome too)
In the page_Load I do this:
RadNotification1.ShowInterval = 12000
' 2 minutes
RadNotification1.AutoCloseDelay = 10000
' 10 sec
lbl_NotifyText.Text = Format(Now,
"HH:mm"
)
' a label within the RadNotification1
So, say I start the page at 11:00, I want to see the notification at 11:02
But during this time I do some PostBacks, until 11:01, what should reset the RadNotification1 to 11:03 and the text in the label to "11:03". Well.. It doesn't...
Although the code is executed (breakpoint) and the new timer values are added and the text was changed, I still get a message at 11:02 with the label text "11:02".
How can I change this behaviour?
Kind regards and thanks in advance,
Erik