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
  • +1
    Certified Lead Developer

    It sounds like you are referring to pre-selecting Record User Filters (a!facet()) with multiple default options when the User loads onto the Record List.

    In short, it's not possible.

    There is not a straightforward way to do this because the "defaultOption" field of a!facet() does not accept a List of Text as an input, even when "allowMultipleSelections" is set to true.

    A common solution to saving user filters in Reports is by storing user filters as JSON in the database. However, I doubt this would work for Record User Filters because a!facet does not include a saveInto, and therefore can not execute local variable saves or database writes.

Reply
  • +1
    Certified Lead Developer

    It sounds like you are referring to pre-selecting Record User Filters (a!facet()) with multiple default options when the User loads onto the Record List.

    In short, it's not possible.

    There is not a straightforward way to do this because the "defaultOption" field of a!facet() does not accept a List of Text as an input, even when "allowMultipleSelections" is set to true.

    A common solution to saving user filters in Reports is by storing user filters as JSON in the database. However, I doubt this would work for Record User Filters because a!facet does not include a saveInto, and therefore can not execute local variable saves or database writes.

Children