Hi Shalini,
Thank you for contacting Syncfusion support.
In the provided image, appointment (s) fields seems to be not mapped correctly and StartTime field may not be defined in your database collection which could be the cause for the issue. We have prepared the sample for your reference which can be downloaded from the below location.
Note: The appointment field mapper names are case sensitive, as it should be provided with the same name values with which it is defined in the database. For example, if you have defined the field name StartTime in database, then the same casing should be followed to map it under appointmentSettings as startTime: “StartTime”
<Code>
$("#Schedule1").ejSchedule({
width: "100%",
height: "525px",
currentDate: new Date(2015, 5, 15),
appointmentSettings: {
applyTimeOffset: false,
dataSource: dataManager,
id: "Id",
subject: "Subject",
startTime: "StartTime",
endTime: "EndTime",
allDay: "AllDay",
recurrence: "Recurrence",
recurrenceRule: "RecurrenceRule"
}
});
</Code>
Note: If still issue persist, kindly share the list collection with us to proceed further.
Regards,
Karthigeyan