Before upgrade when you change one recurrence appointment it work perfectly to restore the default state, now after the upgrade to 15.2 if i move one recurrence appointment when click on restore default state raise me an error…
what else change there?
im receiving an error in this method, nothing changes, i open my last version now and it works perfect.
Appoiment[] updateAppoiments = SchedulerExtension.GetAppointmentsToUpdate<Appoiment>("scheduler", lst, lst, ResidentSchedulerHelper.DefaultAppStorage(), ResidentSchedulerHelper.CreateDefaultResourceStorage());
index out of range, what change there? because is the same code.,…
Thanks
Hi,
We have reproduced this problem and passed this ticket to our developers for further research.
Please bear with us. We will notify you as soon as we make any progress.
it just happen with the recurrence appointment maybe u change something in this new version with recurrence, and just when im modifying a recurrence appointment give me that error.
Thanks
any news on this??
Thanks
Hello Sergio,
It is difficult to provide any estimate in such cases. Usually our R&D team researches issues quickly. However, sometimes even a simple issue has a very complex cause and cannot be solved soon. Therefore, I cannot say precisely when this issue will be researched, but I assure you that our developers do their best to find the cause as soon as possible.
We will keep you informed of our progress.
ok Oleg thanks. maybe in the meantime we can hide that option to the menu. Would you mind telling me if I can hide this option restore default state from the menu.
Thanks
To remove this item from the "Appointment" context menu, handle the SchedulerSettings.PopupMenuShowing event as shown below:
SchedulerSettings settings = new SchedulerSettings(); settings.Name = "scheduler"; settings.PopupMenuShowing = (send, evargs) => { MVCxScheduler scheduler = send as MVCxScheduler; if(evargs.Menu.MenuId == SchedulerMenuItemId.AppointmentMenu) { evargs.Menu.Items.Remove(evargs.Menu.Items.FindByName("RestoreOccurrence")); } };