I’ve implemented recurring events, with items being saved to the database correctly, however I have the following issue.
After adding a recurring event, the recurring instances are displayed in the control, but upon opening any of them they do not show the “series or occurrence” selector, nor does the LightboxRecurringBlock show that the item has Recurring events Enabled.
If I reload the page, functionality is as expected with the selector prompt correctly popping up on these events and LightboxRecurringBlock = Enabled.
I’m using EVAL120719.
Recurring seems to work with the samples from the package,
have you customized the lightbox, or you use default one?
I am not using the default Lightbox, and instead add LightboxRecurringBlock with the following;
var recurring = new LightboxRecurringBlock("recurring", "Recurring");
sch.Lightbox.Items.Add(recurring);
Never mind, I fixed this.
I’m using a ViewModel between the database and the control. On Save() I was updating action.TargetId to the id of the ViewModel (zero on inserts) instead of what the saved entity was returning.
This also caused other problems like modification to single occurences not to be recalled properly 