All checkboxes mandatory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2023 07:41 AM
Hello
How do I make all the checkboxes "selected required", I want the customer needing to tick each of the statments or the request can not be submitted.
at the moment they are all set on " selected required" however I only need to tick one to submit the form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2023 08:26 AM
@Lee Bowers you can actually do this instead of regex :
if(g_form.getValue('your_checkbox_1')==true && g_form.getValue('your_checkbox_2')==true)
return true;
else
return false;
Put all the 10 check boxes get values in AND fashion and check it .
Hope this helps
Mark my answer correct if this helps you
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2024 04:32 AM
Hi @Mohith Devatte ,
I have tried both the solution but it doesn't seem to work for me in any case. Could you please help me with the details steps?
Thanks,
Vaishali