Set default multiple options for record under user filters in the Record

Is it possible to set the default options more than one under user filters.

 

By default we can select the multiple options in the drop down  but is it possible to set the rule in unser  "Set Default Option"

  Discussion posts and replies are publicly visible

Parents
  • I think what you're looking for is Multiple Dropdown Component. If that's the case then you can set default options based on the ones you have. Check the following example:

    load(
        local!language: {"en_US","es_ES"}, /* Here you set the default values you want to show */
        a!multipleDropdownField(
             label: "Language",
             instructions: "In which language are you most proficient?",
             choiceLabels: {
                 "English",
                 "Spanish",
                 "French",
                 "German"
             },
             choiceValues: {
                 "en_US",
                 "es_ES",
                 "fr_FR",
                 "de_DE"
             },
             value: local!language,
             saveInto: local!language
         )
    )


    You can look for more information here: docs.appian.com/.../Multiple_Dropdown_Component.html

Reply
  • I think what you're looking for is Multiple Dropdown Component. If that's the case then you can set default options based on the ones you have. Check the following example:

    load(
        local!language: {"en_US","es_ES"}, /* Here you set the default values you want to show */
        a!multipleDropdownField(
             label: "Language",
             instructions: "In which language are you most proficient?",
             choiceLabels: {
                 "English",
                 "Spanish",
                 "French",
                 "German"
             },
             choiceValues: {
                 "en_US",
                 "es_ES",
                 "fr_FR",
                 "de_DE"
             },
             value: local!language,
             saveInto: local!language
         )
    )


    You can look for more information here: docs.appian.com/.../Multiple_Dropdown_Component.html

Children