CountryTable.updateRecordAsync(recordId, {
"id": 123,
"Country (dropdown)": { name: "USA" },
})
This is throwing an error,
Error: Field "xadlxpdzw" cannot accept the provided value.
Country (dropdown) is a Multiple Select Field.
I have an external API using, which I’m getting a list of the items.
Items object/array is having a field name = title
I want to update only records for which title matches
AT also have a field name “title”
but this is not working as expected. it;s n...
I am using a script feature to add data in the table. One of my field type is “DATE”. Data coming from the API is in string.
Hence, its not allowing me to add the data in AT, showing error - Error: Field “zzfldrJZNkO8gUQl69P” cannot accept the provid...
let old = query[i].field_data;
let new = old.replace(’\n’,’ ’);
replace() does work but its working for the first occurrence only. I have a following string,
"One \n - Two \n - Three"
need this as,
"One </br> - Two </br> - Three"