I have a SharePoint List with attachment columns, each record in the list has multiple attachments. I have created a grouped collection in the OnVisible property of the screen as below:
ClearCollect(ESG_THF_SP_sorted, 'ESG & THF Events');
ClearCollect(ESG_THF_SP_New, GroupBy(AddColumns('ESG & THF Events', CountryText, Country.Value), CountryText, Data))
On the screen, I added a gallery gal1 with items property set to new grouped collection. I inserted a nested a gallery in gal1, call it gal2 and set the items property to
ThisItem.Data
and the Image to
First(ThisItem.Attachments).AbsoluteUri
Although this works but shows only the first attachment image for those records which has multiple attachments and doesn't show rest of the attachments.
I tried adding a third gallery and set its items property to
gal2.Selected.Attachments
but that doesn't work either.
How can I see all pics?
@RezaDorrani@WarrenBelz @anandm08 @ANB