Can we fire a rowinserted type event at the time of adding record in Calendar
Currently, it is not supported. There are only two server event that related to the Row_… they are Row_Rendering and Row_Rendered.
actually, i want to store CurrentUserID() with each record.Any other way to perform this ?
Simply add a new field into calendar table that will store current user id.
You may then select CurrentUserID() function from Fields setup → General → Auto-Update Value of that new field, re-generate ALL the script files, and try again.
Please try v2023.4.0. Now some Row_* server events have been added started from that version.
You may now use the following server events for CRUD calendar events:
- Row_Deleting
- Row_Deleted
- Row_Inserting
- Row_Inserted
- Row_Updating
- Row_Updated