How to get data from a filtered RecordType?

Certified Senior Developer

Hi,

I have an interface that contains a Grid based on a RecordType. So the latter can be filtered as need the users.

After being filtered, how may I get the datasubset of this RecordType ?

For example, on a 200 rows table, if the filtered RecordType displays only 5 rows, I need these 5 rows to be retrieved in my datasubset.

I need to work with this datasubset at anytime.

    

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Appian Employee
    in reply to cedric01

    I guess my question is - can you use the options for selection to return the selected values to the parent interface? Usually it isn't as good a user experience to directly choose all the rows from the grid just based on the filters. I usually prefer having the user select the filters and then have them also select the rows they should use. If you use this paradigm, then you can just use the selection parameter in the grid to save into a variable that can be used in your parent interface.

Children