Hello!
I use a non-Telerik form to add/edit Appointments. I want to use Telerik's Edit Recurrence dialog instead of creating a whole new form like I did for adding/editing appointments. I want to do something like:
I would assume that once the dialog exits, I would be able to retrieve the recurrence rule from the appointment that I passed in's RecurrenceRule property, but the dialog closes right after it opens, and then returns a null exception when I access the RecurrenceRule property since I didn't get to create a recurrence rule with the form. Any help would be appreciated! Thanks!
I use a non-Telerik form to add/edit Appointments. I want to use Telerik's Edit Recurrence dialog instead of creating a whole new form like I did for adding/editing appointments. I want to do something like:
EditRecurrenceDialog dialog = new EditRecurrenceDialog(appointment);
dialog.Show();
I would assume that once the dialog exits, I would be able to retrieve the recurrence rule from the appointment that I passed in's RecurrenceRule property, but the dialog closes right after it opens, and then returns a null exception when I access the RecurrenceRule property since I didn't get to create a recurrence rule with the form. Any help would be appreciated! Thanks!