Hi Victor,
Thanks for using Syncfusion product.
We have created a separate incident for this query,
please login with the following link for further follow-up.
Link: https://www.syncfusion.com/account/login?ReturnUrl=%2fsupport%2fdirecttrac%2fincidents
Regards,
Vigneshkumar R
Hi Calderon,
Thanks for using Syncfusion product.
We do not have direct support for adding SilverLight Schedule in LightSwitch application and we have already considered this as a feature request and it will be implemented in any of our upcoming release.
As of now your requirement can be achieved by creating user control. We have created a sample in LightSwitch application by adding Silverlight Schedule control and also we have bound item source from the screen. Please refer the sample below.
Sample Link: Schedule_LightSwitch
If the sample does not meet your requirement, please provide us more information along with screen shot (if possible). It will be very helpful for us to analyze on it and provide you the possible solution.
Regards,
Nijamudeen M.
Hi Calderon
As of now we don’t have any direct support to add reminder value in the xaml page and your requirement can be achieved by adding reminder value in the AppointmentCollectionChanged event. We have prepared sample for the same and please find the sample in the below link.
Sample Link: Schedule_LightSwitch
We can add reminder value as per your requirement once lightswitch extension support provided to the schedule control. As mentioned before lightswitch extension support for schedule will be implemented in any of our upcoming main release.
Note: In the above sample we have used below code snippet to add the reminder value.
void schedule_AppointmentCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { var sched = sender as SfSchedule; if (sched.Appointments.Count > 0) { if(e.Action.ToString()=="Add") { sched.Appointments.Last().ReminderTime = ReminderTimeType.ThirtyMin; } } } |
Regards
Vigneshkumar R