Data to filter without column in Record list

Certified Senior Developer

Hi

Will it possible to filter the data without defining that column in record list means for example i have one column which has Boolean values as Yes or No  i have to define that column as filter in Record without defining that column in Record List.

Kindly suggest in this

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to Stefan Helzle

    Sure below is the configuration i have defined

    a!recordFilterList(
      name:"Non Standard Request",
      defaultOption: " ",
      options:{a!recordFilterListOption(
        id:1,
        name:"Yes",
        filter:a!queryFilter(
          operator:"=",
          field:"nonstandard_req_bool"
        )
      ),
      a!recordFilterListOption(
        id:2,
        name:"No",
        filter:a!queryFilter(
          operator:"=",
          field:"nonstandard_req_bool"
        )
      )
      }

     

    )

Children