Hi Community,
I’m using a public web form for “Membership Application” DocType and need to check if the submitted email exists in the “Member” DocType.
Problem:
My validation code (below) doesn’t work—it doesn’t block submissions even when the email isn’t in “Member”. No errors, but no validation either.
frappe.web_form.validate = function() {
const email = frappe.web_form.get_value('email');
return frappe.call({
method: "frappe.client.get_value",
args: {
doctype: "Member",
fieldname: "name",
filters: { email: email }
}
}).then((response) => {
if (!response.message) {
frappe.msgprint("Email not found in Member records.");
return false; // Fail validation
}
return true; // Pass validation
});
}
What I’ve Tried:
- Guest User has read access to “Member”.
Question:
Why isn’t the validation blocking submissions? Are there hidden permissions or a better approach?
Thanks for any tips!