Hi,
I need to add additional fields in the pop up event of the scheduler, this data should be saved in Database eventually.
fields: {
taskId: { from: "id", type: "number" },
title: { from: "title", defaultValue: "No title", validation: { required: true } },
start: { type: "date", from: "start" },
end: { type: "date", from: "end" },
startTimezone: { from: "startTimezone" },
endTimezone: { from: "endTimezone" },
description: { from: "description" },
recurrenceId: { from: "recurrenceId" },
recurrenceRule: { from: "recurrenceRule" },
recurrenceException: { from: "recurrenceException" },
attendees: { from: "attendees", defaultValue: 1 },
projects: {from: "projID"},
isAllDay: { type: "boolean", from: "isAllDay" }
Attendees, projects are 2 additional fields .
Attendees,projects are not showing up in e of the event when I am trying to save the event.