Transform Multiple Pics into Collection

Hi Team,

We are looking to transform a collection of Multiple Pics to a collection of Pics.

Practically, we want to allow our users to upload multiple images, using the multiple pics, but then we want to allow them to view all the pics as a collection.

Is there a way to use computed fields JavaScript or … to achieve this?

Thanks a lot for your support!

Spyros

You can use the “Miracle Method”

1 Like

Do you mean a carousel of all pictures or an actual collection?

I was thinking of being able to show all the images of the multiple pics elements as a collection

I will check what you shared Darren

I actually made it work, but the implementation is a little ugly

I use Row Owners, and in case somebody uploads 10 images, then I have to create a separate table with 10 lines (with this row owner) only for these 10.

Is there a way to work around this?

Thank you so much!

If you are concerned about having the row owner in the helper table, I don’t think it works like that.

On entry to the screen where you have the multiple pics, set the rowID of the record that holds those pics to the user profiles row.

Use that value in the helper table to establish a relation and a lookup to get the list of images, and transpose them. That way, the data will always be dynamic.

The only thing you need to take care of in advance is adding enough rows for the maximum amount of images a “Multiple Images” column in your data may have.

Thanks for the guidance. All done :slight_smile:

1 Like