Dear Community,
I am new to Power Apps and have encountered the following problem.
I'm experiencing a significant issue with the functionality of my application, specifically concerning the automatic refreshing of a document library after file uploads. The expected behavior of my application upon file upload is for the document library to automatically refresh, presenting the most recently uploaded files without requiring any manual input.
However, the application currently does not perform this function, even though I run the refresh() function. Instead, to view the updated content, I am required to manually activate the refresh icon after every file upload, which disrupts the seamless user experience I aim to provide.
The objective is to develop an event-driven mechanism that triggers an automatic update or refresh in the document library upon successful file upload, thus negating the need for manual refresh.
Here is a piece of code I am running when pressing the Upload-Button in my application.
If(
PAUploadFlow.Run(
JSON(
colUploadDocuments,
JSONFormat.IncludeBinaryData
),
varCurrentKind.ID
),
Clear(colDocs);
Reset(UploadDocs);
Set(
varPopupVisible,
false
);
Refresh('Kinder Dokumente')
)
Here is a loom-link, where I recorded my Issue and show the application in detail.
I hope you can help me with this issue