This is a migrated thread and some comments may be shown as answers.

RadSchedulerReminder

1 Answer 70 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Chris Scallion
Top achievements
Rank 1
Chris Scallion asked on 16 Sep 2010, 09:07 PM
I've noticed that there is an event for items being opened, but not one for appointments being dismissed or for the form closing, etc?
It would make sense that if the items were dismissed, an event would trigger so that the appointment.dismissed property could be persisted to a datasource... is there any current way to handle this or do I need to subclass the reminder dialog?

1 Answer, 1 is accepted

Sort by
0
Dobry Zranchev
Telerik team
answered on 21 Sep 2010, 04:27 PM
Hello Chris Scallion,

Thank you for writing. 

We do not support this functionality for the moment. I will add this feature request to our Public Issue Tracking System. You can track the status of the PITS item here. Your Telerik have been updated for the feedback. Meanwhile, your could inherit RadReminderForm and subscribe to the Click events of the buttons Dismissed and DismissedAll. You can notify the form that contains RadReminder on these events. There you can get the reminder items and check which of them are dismissed:
class Class1:RadAlarmForm
{
    public Class1()
        : base()
    {
        this.radButtonDismiss.Click += new EventHandler(radButtonDismiss_Click);
    }
 
    void radButtonDismiss_Click(object sender, EventArgs e)
    {
        MessageBox.Show(this.radGridViewEvents.Rows.Count.ToString());
    }
}

I hope that this will help you. If you have other questions, feel free to write us back.

Sincerely yours,
Dobry Zranchev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Scheduler and Reminder
Asked by
Chris Scallion
Top achievements
Rank 1
Answers by
Dobry Zranchev
Telerik team
Share this question
or