Hi Percy,
Greetings from Syncfusion Support.
If you want to write to a file, you will need to send an API
request from your browser/React to a server and have that server write to the
file system. You can do this in our actionComplete event of the Schedule
like the one below.
onActionComplete(args) {
let result = data.fifaEventsData // Event data
if (args.requestType === "eventCreated") {
if (args.addedRecords.length > 0) {
result = { ...result, ...args.addedRecords };
}
//With
the result, you can export the file here
}
}
Regards,
Ruksar Moosa Sait
Attachment:
ej2reactreadjsonfile_8c311d79.zip