I’m not sure if it would help your use case, but there is a fairly simple technique that can employed to expand your image array across multiple rows in a single column, which would allow it to be used as a collection.
It works like so:
- Create a bare Glide table to use as a helper table
- Add a RowID column
- Add a Lookup column that targets the RowID column. The result should be an array of RowIDs.
- Use a Find Element Index column to find the RowID in the RowID array. This will give you an auto-incrementing Row Index.
- Add your Image array using a Single Value column, or relation + lookup column.
- Now use a Single Value column to address the Nth from start of the image array, where N is the row index.
The end result will be that all of your images are shown in a single column, with one image per row. This is a standard technique that can be applied to any array. The advantage is that once it’s set up, it requires zero maintenance. If the size if your image gallery increases, you simply add more rows.