Select or unselect Checkboxes based on user input

Select or unselect Checkboxes based on user input

Requirement

Select or unselect a checkbox based on the user's input in another field.

Use Case

A travel management application allows for booking travel packages for tourists. Some need a whole package, while others may only need accommodation or tour guides. Based on the options selected by the tourists, we will select or unselect checkboxes.
 

Steps to follow

1. Create the form with the following details:
Form
Form Link Name
Field Type
Field Name
Field Link Name
Let's go!
Let_s_go
Drop Down
From
From
Drop Down
To
To
Date
Date of Travel
Date_of_Travel
Drop Down
Travel Days
Travel_Days
Check box - Options listing as below:
  • Complete Package
  • Accommodation
  • Food
  • Tour Guides
  • Tickets
  • Car Rentals
Facilities Needed
Facilities_Needed
Single Line
Previously Selected
Previously_Selected


The Facilities Needed field is a checkbox, which will list all common facilities needed during a tour or a vacation, with options like Accommodation, Food, Tour Guides, Tickets, and Car Rentals. Complete Package option would include everything in the list. When a tourist selects this option, automatically every other checkbox is selected. Similarly, when a tourist unselects this, every option is unselected, making it open for them to choose just the options they want.
 
The Previously Selected field is used to track the options selected by the tourists to allow them better selection of the options. This is not necessary for them, so let's create a workflow to hide the field.
 
2. Create a workflow to hide the Previously Selected field on the load of the form.
 
3. Add the below code in the Deluge Editor to hide it.
  1. hide Previously_Selected;

4. Now, we shall proceed to our checkboxes. Let's create a workflow to execute on the input of the Facilities Needed field.
 
3. Add the below code in the Deluge Editor:
  1. //Get the previous selection
  2. selectedList = input.Facilities_Needed;
  3. //Get the number of options selected
  4. size = selectedList.size();
  5. //When current selection has Complete Package select all
  6. if(selectedList.contains("Complete Package") && !input.Previously_Selected.contains("Complete Package"))
  7. {
  8.  Facilities_Needed.selectall();
  9.  input.Previously_Selected = selectedList;
  10. }
  11. //When the Previously Selected has Complete Package deselect all
  12. else if(input.Previously_Selected.contains("Complete Package") && !selectedList.contains("Complete Package"))
  13. {
  14.  Facilities_Needed.deselectall();
  15.  input.Previously_Selected = selectedList;
  16. }
  17. //When Previously Selected and Facilities Needed do not have Complete Package and all the 5 options are selected, select all
  18. else if(size == 5 && !Previously_Selected.contains("Complete Package") && !selectedList.contains("Complete Package"))
  19. {
  20.  Facilities_Needed.selectall();
  21. //Append Complete Package to the Previously Selected field for next selection
  22.  input.Previously_Selected = selectedList.toString() + ",Complete Package";
  23. }
  24. //When Previously Selected has Complete Package and all the 5 options are selected, deselect Complete Package
  25. else if(size == 5 && input.Previously_Selected.contains("Complete Package"))
  26. {
  27.  Facilities_Needed.deselect("Complete Package");
  28. //Remove Complete Package from the Previously Selected field for next selection
  29.  input.Previously_Selected = selectedList.toString().replaceAll("Complete Package","");
  30. }

See how it works


    Zoho CRM Training Programs

    Learn how to use the best tools for sales force automation and better customer engagement from Zoho's implementation specialists.

    Zoho CRM Training
      Redefine the way you work
      with Zoho Workplace

        Zoho DataPrep Personalized Demo

        If you'd like a personalized walk-through of our data preparation tool, please request a demo and we'll be happy to show you how to get the best out of Zoho DataPrep.

        Zoho CRM Training

          Create, share, and deliver

          beautiful slides from anywhere.

          Get Started Now


            Zoho Sign now offers specialized one-on-one training for both administrators and developers.

            BOOK A SESSION








                                You are currently viewing the help pages of Qntrl’s earlier version. Click here to view our latest version—Qntrl 3.0's help articles.




                                    Manage your brands on social media

                                      Zoho Desk Resources

                                      • Desk Community Learning Series


                                      • Digest


                                      • Functions


                                      • Meetups


                                      • Kbase


                                      • Resources


                                      • Glossary


                                      • Desk Marketplace


                                      • MVP Corner


                                      • Word of the Day


                                        Zoho Marketing Automation

                                          Zoho Sheet Resources

                                           

                                              Zoho Forms Resources


                                                Secure your business
                                                communication with Zoho Mail


                                                Mail on the move with
                                                Zoho Mail mobile application

                                                  Stay on top of your schedule
                                                  at all times


                                                  Carry your calendar with you
                                                  Anytime, anywhere




                                                        Zoho Sign Resources

                                                          Sign, Paperless!

                                                          Sign and send business documents on the go!

                                                          Get Started Now




                                                                  Zoho TeamInbox Resources



                                                                          Zoho DataPrep Resources



                                                                            Zoho DataPrep Demo

                                                                            Get a personalized demo or POC

                                                                            REGISTER NOW


                                                                              Design. Discuss. Deliver.

                                                                              Create visually engaging stories with Zoho Show.

                                                                              Get Started Now







                                                                                            You are currently viewing the help articles of Sprints 1.0. If you are a user of 2.0, please refer here.

                                                                                            You are currently viewing the help articles of Sprints 2.0. If you are a user of 1.0, please refer here.



                                                                                                  • Related Articles

                                                                                                  • Show or Hide field on checkbox input

                                                                                                    Requirement Show or hide a field based on the checkbox value. Use Case An ice-cream parlour is accepting orders online. The patrons can choose from a list of available flavours, toppings etc.   See how it works Steps to follow 1. Create the form with ...
                                                                                                  • Dynamically Filter Lookup Options Based on Another Lookup Field's Selection

                                                                                                    Requirement Automate the creation of portal user accounts based on the email entered in the Zoho Creator form. Use Case Consider an IT asset management application on which an organization relies to register and monitor assets assigned to employees. ...
                                                                                                  • Understand checkbox field

                                                                                                    Understand checkbox fieldThe checkbox field enables your users to select one or more values from a predefined set of choices that are displayed as checkboxes. When to use this field?You may consider the following pointers to determine when to use a ...
                                                                                                  • Understand multi select field

                                                                                                    Understand multi select field The Multi Select field enables your users to select one or more values from a predefined set of choices that are displayed in a dropdown menu. When to use this field? You may consider the following pointers to determine ...
                                                                                                  • Understand on user input actions

                                                                                                    The script actions that you define in the on user input event will be executed whenever the field value is added or modified by the user. It is used to improve the usability of a form by validating field data even before it is submitted or display ...
                                                                                                    Wherever you are is as good as
                                                                                                    your workplace

                                                                                                      Resources

                                                                                                      Videos

                                                                                                      Watch comprehensive videos on features and other important topics that will help you master Zoho CRM.



                                                                                                      eBooks

                                                                                                      Download free eBooks and access a range of topics to get deeper insight on successfully using Zoho CRM.



                                                                                                      Webinars

                                                                                                      Sign up for our webinars and learn the Zoho CRM basics, from customization to sales force automation and more.



                                                                                                      CRM Tips

                                                                                                      Make the most of Zoho CRM with these useful tips.



                                                                                                        Zoho Show Resources