I have a multiline plaintext SharePoint field that I'm updating on a custom PowerApp.
The first screen is a gallery. On select of a specific item, another screen is opened and information about the item displays (GalleryName.Selected.Properties). Then there is a Text Input that updates the SharePoint field via Patch function in OnSelect of a button
Patch is working correctly and the item updates. After the Patch function, the list is refreshed
Refresh('List Name')
I expected this to update the selected gallery item, but it doesn't. I have to navigate back to the gallery on the first screen and then choose the item to see the update
Is there a way to update/refresh the selected gallery item?
Solved! Go to Solution.
@cooper33this should happen for you based on how you describe the situation.
However, what is the Items property of your Gallery? Are you basing this on DataSource (either directly or with other filtering statements) or are you basing it on a Collection that perhaps you are only re-collecting based on some other action or condition?
If you have a gallery with Items of dataSource and you patch or otherwise update a record in the dataSource, the Gallery will change to reflect it. If you have it based on a Collection, you will need to refresh the Collection (there is no refresh for them, you have to issue the statement to collect again).
@cooper33this should happen for you based on how you describe the situation.
However, what is the Items property of your Gallery? Are you basing this on DataSource (either directly or with other filtering statements) or are you basing it on a Collection that perhaps you are only re-collecting based on some other action or condition?
If you have a gallery with Items of dataSource and you patch or otherwise update a record in the dataSource, the Gallery will change to reflect it. If you have it based on a Collection, you will need to refresh the Collection (there is no refresh for them, you have to issue the statement to collect again).
Thanks forgot about that. My Items property was RecordsCollection. On the button I added this to get it working:
ClearCollect(RecordsCollection,'Issues List')
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 |
---|---|
261 | |
130 | |
86 | |
86 | |
68 |