Calendar event tapped/clicked event handler

I am creating a note-app and want to add a calendar.
My Question: How to add tapped/clicked event (with the id of the note (note.id)).

My code:
foreach(Note note in Notes)
            {
                CalendarInlineEvent events = new CalendarInlineEvent();
                events.Subject = note.title;
                events.Color = note.isImportant ? Color.Orange : Color.LightGray;
                events.StartTime = note.date;
                events.EndTime= note.date;
                calSfCalendar.DataSource.Add(events);
            }

Tahnk you <3

1 Reply 1 reply marked as answer

MS Muniappan Subramanian Syncfusion Team January 4, 2021 06:31 AM UTC

Hi Jonas, 
 
Thank you for contacting Syncfusion support. 
 
Based on the shared information we have checked your requirement “How to add tapped/clicked event (with the id of the note (note.id))”. As of now SfCalendar does not have custom appointment support. You can achieve your requirement by using SfSchedule control. we have prepared a sample for the same, please find the sample by the following link.  
 
 
Please refer our UG documents to know more details about custom appointment mapping in Schedule, 
 
We hope this helps. Kindly revert us if you have any concern. 
 
Regards, 
Muniappan S. 


Marked as answer
Loader.
Up arrow icon