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.
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.
Best answer by Ujval_Shah
Cool, then your JavaScript syntax is probably incorrect. Others will need to help you from here.
Figured out,
CountryTable.updateRecordAsync(recordId, {
"id": 123,
"Country (dropdown)": [{ name: "USA" }],
})
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.