Comment Post Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎Feb 04, 2021 11:09 AM
I am passing in the id of a linked record from a trigger, and I want to add to a multi select. How can I use push() or get the existing values of the field and add to them? This is as far as I could get.
let inputConfig = input.config();
console.log(`${inputConfig.recordid}`);
let table = base.getTable("Individual Inventory");
let field = table.getField("Tags");
let rec = inputConfig.recordid;
console.log(`${rec}`);
await table.updateRecordAsync(
rec[0], {
Tags :
});
0 Replies 0