Solved! Go to Solution.
Hi @RockyRocks ,
Do you want to download attached images in gallery?
Try this formula: (set the gallery's image's OnSelect)
Download(First(ThisItem.Attachments).AbsoluteUri)
Then, it will loads attached image when you click on the image in the gallery.
Best regards,
Community Support Team _ Phoebe Liu
Thanks a lot @v-xida-msft
The inner gallery is not fetching data above 1000th rown from sharepoint am getting blank displayed, But the Upper gallery its fetching correctly, what can be done?
My solution includes an Image media and Timer input. SPDocuments is the folder in SharePoint, colAll is the output collection. It can include more columns, depending on the needs.
App:
OnStart = Clear(colDocumentsNumbered);
ForAll (SPDocuments,
Collect(colDocumentsNumbered,
Last(FirstN(AddColumns(Documents, "RowNumber", CountRows(colDocumentsNumbered)+1),
CountRows(colDocumentsNumbered)+1))));
Clear(colAll);
Set(currentImg,1);
Image:
Image = LookUp(colDocumentsNumbered,Value(RowNumber)=currentImg).Thumbnail.Large
Timer:
OnTimerEnd = Set(currentImg, currentImg+1);
OnTimerStart = Collect(colAll, {Image:Image1.Image, Name: LookUp(colDocumentsNumbered,Value(RowNumber)=currentImg).Name, Link: LookUp(colDocumentsNumbered,Value(RowNumber)=currentImg).'Link to item'}); // more properties can be included
OnSelect = Set(currentImg,1); // To restart the download
Duration = 1 // In ms, the lowest possible time for fast loading
Repeat = true
User | Count |
---|---|
165 | |
91 | |
67 | |
64 | |
63 |
User | Count |
---|---|
211 | |
157 | |
93 | |
81 | |
71 |