BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
My actual example is quite complicated so I will not post the actual code here but I have encountered this behavior and I just want to know if this is intended :
-I have a scheduler data-bound to a collection of meetings (List<Meeting>)
-Each meeting in conceived like a viewmodel and has a public property Model that represents the Ef-Core database model
-Each Model has various properties describing the meeting among which is also a collection MeetingPersons (List<MeetingPerson>)
Here's what I noticed :
-When the user uses the scheduler to edit an existing meeting, the MeetingPersons collection is emptied by syncfusion code. Actually what is happening is that using reflection the scheduler accesses the instance of my Meeting viewmodel class and switches the Model property instance with some other instance (I presume cached previously) that does not have any items in MeetingPersons.
Is this expected ?
Hi Swathi,
Sorry for the late reply , I am trying to find the time to create a clean example, I will get back to you here asap.
Reg
Hi Dan
Thanks for the update. We will wait to hear from you.
Regards,
Ashok
Hi,
I finally found the time to create a simple example, I attached the project here. If you put a brakepoint in
SchedulerTestPageViewModel.ChangeAppointment and then try to change the meeting in the UI , you should see that the instance that comes in the method is different from the instance in InstructorMeetings collection which is the collection bound to the scheduler (use Make Object ID in VS to verify).
Also , if you look at the property OtherMeetings in the instance you will see that it has 0 elements while the one in the original has 1.
Best Regards,
Dan
PS: Just deleted the previous post , attached the wrong file
Dan,
Thank you for sharing the issue replication sample with us.
<SfSchedule @ref="ScheduleRef" TValue=MeetingViewModel AllowInline="false" StartHour="09:00" EndHour="17:00" Height="100%" EnableAutoRowHeight="true"> <ScheduleEventSettings TValue="MeetingViewModel" DataSource="vm.InstructorMeetings"> <ScheduleField> <Field Name="OtherMeetings" /> </ScheduleField> </ScheduleEventSettings> <ScheduleEvents TValue="MeetingViewModel" ActionCompleted="ActionCompleteHandler"> </ScheduleEvents> </SfSchedule> @code { SfSchedule<MeetingViewModel> ScheduleRef; public async Task ActionCompleteHandler(ActionEventArgs<MeetingViewModel> args) { if (args.ActionType == ActionType.EventCreate) { //await vm.AddAppointment(args.AddedRecords[0]); } if (args.ActionType == ActionType.EventChange) { var data = vm.InstructorMeetings.Find(m => m.Id == args.ChangedRecords[0].Id); if (data != null) { // Add items from the original list foreach (var item in data.OtherMeetings) { args.ChangedRecords[0].OtherMeetings.Add(item); } } await vm.ChangeAppointment(args.ChangedRecords[0]); } if (args.ActionType == ActionType.EventRemove) { //await vm.RemoveAppointment(args.DeletedRecords[0]); } } } |
Hi ,
Yes, indeed this is how I have been handling it as well but it is not a good solution ... for one , it means I have to always be careful when I add reference type properties and pass their values back into the model (which basically the binding should do), but also when you look at a delete scenario ... the item in the viewmodel collection has already been deleted so ... there is no way to find it back at this point and I have to handle it in other ways as well ...
But oh well , I just wanted to make sure this is an issue in the component and not in how I am using it, thanks!
Best Regards,
Dan
Actually thinking about it , for other people who may use the component, I think the best approach is to have a separate viewmodel collection that does not include any "complex properties" which is just used to bind to the scheduler and have your actual viewmodel objects representing the appointments in a separate Dictionary keyed by the appointment id. Then you would just be able to always find the correct viewmodel instance and also not worry about adding new properties or special handling of the delete scenario.