0

Delete all attachment from a specific record using the ninoc code
Hello support,
How can I delete all the attached files from a specific record using the ninox code?
Greetings
A Green
Like Follow
7replies
-
Hello Guys I found an alternative for this problem.
You have to duplicate the current record, which will transfer all the data except the attachments and image fields.
After that you have to delete your original record;
For instance your button code will look like:
let new := duplicate (this);
delete this;
openRecord(new)