Question relate to custom picker

I am using custom picker

In that custom picker I am fetch group member from a group

like this : 

Now i  want show user image before his/her name

like this : 

Any suggestion for this how can I do it ?

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to Pawan Lalwani

    It is not possible to apply such filters in User picker.

    But in Custom Picker also you can only have list of text strings as labels and so it's not possible to display userImage.

    You can potentially prevent the user to select himself by playing with saveInto of User picker, but there is no way to remove him from suggestion list, which is certainly what you want.

    a!save(
      local!users,
      remove(
        save!value,
        wherecontains(loggedInUser(), save!value)
      )
    )

Children
No Data