Hello,
I have a gallery (GallerySpace) that populates from a collection called colFloors that I need to refresh using a timer. I've tried various iterations of Refresh() in the timer's OnTimerEnd but can't get this to refresh. Could anyone provide some guidance on how to get this to work?
Thanks in advance.
Solved! Go to Solution.
@p-t-brown
Refreshing a collection will have no effect. The refresh function only works on a non-local datasource such as a SharePoint List, SQL, CDS, etc.
Refresh(your_sharepoint_list);
Instead, you must re-create the collection using the code you have written previously to load it. Refresh cannot be used on a collection.
ClearCollect(colFloors, some_code_here)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
@p-t-brown
Refreshing a collection will have no effect. The refresh function only works on a non-local datasource such as a SharePoint List, SQL, CDS, etc.
Refresh(your_sharepoint_list);
Instead, you must re-create the collection using the code you have written previously to load it. Refresh cannot be used on a collection.
ClearCollect(colFloors, some_code_here)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
252 | |
122 | |
84 | |
84 | |
67 |