a!recordFilterListOption() Function

Creates a filter option for the a!recordFilterList() function.

This function, when used within the options parameter in the a!recordFilterList() function, creates a user filter option. See Expression-Based User Filters for common uses.

Syntax

a!recordFilterListOption( id, name, filter, dataCount )

  • id (Integer): The unique identifier for the filter option. This must be unique across other filter options within the same user filter.
  • name (Text): The name of the filter option that is displayed to users.
  • filter (QueryFilter): The QueryFilter value that will be sent by the framework when this filter option is selected.
  • dataCount (Integer): An optional value that defines how many items in the data set will be selected if this filter option is selected.

Returns

FacetOption

Example

1
2
3
4
5
6
7
8
9
=a!recordFilterListOption(
  id: 1,
  name: "Active",
  filter: a!queryFilter(
    field: "status",
    operator: "=",
    value: "active"
  )
)
Open in Github Built: Thu, Feb 23, 2023 (02:59:22 PM)

On This Page

FEEDBACK