Can anyone confirm whether returning a promise works in onCustomValidation or whether I’m doing it incorrectly? This prevents me from validating the form input using a database call or backend function.
Here is some sample code that executes because the console log “Invite code is not valid” is printed out. However, the reject function does not update the validation state of the input field.
$w("#input5").onCustomValidation((value, reject) => {
console.log("Validating code " + value);
return wixData.query("InviteCodes")
.eq("inviteCode", value)
.find()
.then((results) => {
if(results.length === 0) {
reject("Invite code is not valid");
console.log("Invite code is not valid");
}
});
});
});
Similar code written synchronously works fine and the field shows with a red border. However, this is not ideal because I need to preload sensitive data to the client instead of validating on the backend.
$w("#input5").onCustomValidation((value, reject) => {
console.log("Validating code " + value);
codes.forEach(code => {
if (code.inviteCode === value) {
return;
}
})
reject("Unknown invite code");
});