Hi,
I want to update the choices a singleSelect field has without adding a new record.
I tried this approach, but that yields the following error
TypeError: Cannot add property 2, object is not extensible
Here is the relevant code (MtypeName gets its value from a singleLineText field)
let MtypeName = Mtype.getCellValueAsString("Meeting Type")
let Types = MeetingsTable.getField("Meeting Type")
Types.options.choices.push({name: MtypeName})
I this possible without residing to API calls?
If this is only possible using the Rest API, I suppose I cannot use this without providing the authentication details, right ?