• Resolved smccart

    (@smccart)


    I’d like to filter options within a searchable list depending on a chosen category within another dropdown

    Is this possible with the ‘Formula Calculator’ next to ‘Import’?

    I’ve tried this formula below but the dropdown options come up as ‘undefined’

    if($$field_rnField140$$.label=='Select Category')
    {
      return $$field_rnField137$$.label;
    }
    if($$field_rnField140$$.label=='ANBI Switch')
    {
      return $$field_rnField142$$.select2-search
    }

    Thanks in advance

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author EDGARROJAS

    (@edgarrojas)

    Hello!

    Yes it is possible, the formula of the multiple select fields need to return an array of object with the label and value example:

    return [{“label”: “option 2”, “value”:”1″},{{“label”: “option 2”, “value”:”1″}}];

    Regards!

Viewing 1 replies (of 1 total)

The topic ‘Searchable List Formula’ is closed to new replies.