Hi Sascha,
Thanks for contacting Syncfusion Support.
Based on your query with showing the appointments details that are newly created, we have prepared the simple sample in Schedule. Please find the sample link below. Using “AppointmentCollectionChanged” event you can get the created appointment details. Kindly refer the below code snippet.
|
[c#]
private void Schedule_AppointmentCollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
if (e.Action == NotifyCollectionChangedAction.Add)
{
NewlyAddedAppointment = e.NewItems[0] as ScheduleAppointment;
}
} |
You can also refer our user guide documentation for the same from the below link,
If the provide sample does not meet your requirement, kindly provide us with more details about your query by modifying the provided sample. It will helpful for us to check on it and provide you the better solution at the earliest.
Regards,
Swathi G