Hi,
We are using the save button of the custom editor window to perform crud operations, when inserting a new event looks like its not reading the auto generated sql id returned by REST APi in the response object, we have correctly mapped the eventid field to the id field of the event settings, please provide sample code.
if (args.requestType === 'eventCreate') {
rest_api_call(eventobject).subscribe(data => {}) //here we receive the server generated id
}
Thanks.