Hi, I have a custom record with a multi-select fie...
# suitescript
d
Hi, I have a custom record with a multi-select field for subsidiary. I cannot figure out how to toggle selections in the field. I have tried
record.submitFields(id, type, { fieldId: [subId1, subId3] })
which does not update record.
record.submitFields(id, type, { fieldId: subId1 })
allows me to toggle 1 option, but performing it again for subId3 overwrites the value. I wish to make several selection active simultaneously. Which is easy to do manually but I am required to do this using a user-event.