Hi Andrzej,
Thanks for your interest in Syncfusion products.
We have already fixed the issue with Schedule events passed with only Schedule appointments even custom appointments added and the fix has been included in our latest version.
So, could you please upgrade to our latest version 14.4 to achieve this requirement?
Based on your requirement we have modified the Customization demo and please find the modified sample from below link.
In the above sample, we have modified the custom appointment AppointmentTime property value using the AppointmentResizing event by listening its argument values on resizing.
Schedule.AppointmentResizing += Schedule_AppointmentResizing;
private void Schedule_AppointmentResizing(object sender, AppointmentResizingEventArgs e)
{
(e.Appointment as Appointment).AppointmentTime = e.To.ToString("hh:mm tt");
} |
Regards,
Jeyasri M.