Sep 25, 2020 10:19 PM
Hey community,
How do I create or update single/multi select fields ?
The current guide example only applicable on text fields. table.createRecordAsync({'My field name': 'new value'});
table.createRecordAsync({'My field name': 'new value'});
Regards Harsh
Solved! Go to Solution.
Sep 26, 2020 07:50 AM
The write formats for each field type are listed in the docs. For Single Select, its {name: 'xxxx'} or {id: 'xxxx'}.
{name: 'xxxx'}
{id: 'xxxx'}
See Solution in Thread