pickerFieldCustom: selected value is getting replace with identifiers value

Certified Associate Developer

the pickerFieldCustom field is replacing the user selected data to its identifier value , please suggest how to solve this. 

my datasubset is as below :

a!dataSubset(
data:a!flatten(local!output.data),
identifiers: a!flatten(local!output.identifiers)
)

 

  Discussion posts and replies are publicly visible

Parents Reply
  • The data in this local comes from the same table that the picker is working with—it's simply filtered based on the selected items in the picker.

    You can call a query on your data source by applying a filter on the primary key using the values from selectedValue (i.e., the selected items from the picker). This will return the list of corresponding records, which you can then use to display the selected labels in your custom picker.

Children
No Data