How can I write a script to select the checkbox options based on value selected in a list field?

How can I write a script to select the checkbox options based on value selected in a list field?

Assume that "Options" is your picklist field and "Equipment" is your checkbox field. 

Copy code
if (input.Options  ==  "Tennis")
{
    Equipment.deselectall();
    Equipment.select("Racquet");
}
else if(input.Options == "Football")
{
    Equipment.deselectall();
    Equipment.select("Ball");
}


You'll need to put this in the On User Input action of the "Options" picklist.

    • Related Articles

    • How can I get the values entered for certain fields via Deluge script?

      Many a times, when you are developing an application, you may need to get the value(s) entered for the fields in the form. To get the particular value, you can do so in Deluge Script, using the statement: input.<Field Name>For ex, if you would like ...
    • Field List Page

      The Fields section of a module in Zoho Recruit presents details of fields in the selected module. The Fields section has two subsections - Field listing and Fields Permission. As the name suggests, the Field Listing section enables you to view the ...
    • Field List Page

      The Fields section of a module in Zoho Workelry presents details of fields in the selected module. The Fields section has two subsections - Field listing and Fields Permission. As the name suggests, the Field Listing section enables you to view the ...
    • List-based Reports

      This is an advanced report that shows how your leads have responded to campaigns that you sent, top five campaigns and an yearly data on campaigns, all of this subject to a particular to a mailing list. From the Navigation toolbar, choose Leads and ...
    • Mailing list management

      List management is a macro level to deal with contacts and take actions on them at your convenience. This provides a detail view of contacts with respect to mailing lists. Create list Once you create your Zoho Campaigns account, you'll be redirected ...