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
  • Hi  ,

    In pickerFieldCustom, there's a parameter called selectedLabels (a list of text strings) that accepts an array of labels corresponding to the currently selected items.

    To populate this, you'll need to run an additional query using the selected item IDs as a filter to fetch their corresponding labels, and then pass those to the selectedLabels parameter.

    This approach is also outlined in the recipe shared by Stefan. However, note that the recipe uses static data—you’ll need to implement a dynamic query that refreshes on every value change.

Children
No Data