As you can see from the code below, when a user changes the value of SolutionList input field, Ineed it to update the record in the SolutionItems Database.
Any ideas of what I’m doing wrong?
export async function SolutionList_change(event) {
await $w('#SolutionItems').setFieldValues({
"client": $w('#ClientName').value, // is executed
"solutionList":$w("#SolutionList").value//not executed
});
$w("#SolutionItems").save(); // this is being executed but without the solution list valu being added
}