Is there a way I could add a timer or delay Refresh()? I'm currently working on an app that allows user to upload documents on SharePoint List. Then display the uploaded documents on a data table.
The Upload button OnSelect has the following formula:
UploadToRedFolderLib2.Run(_myID,{file:{name:AddMediaButton3.FileName, contentBytes:AddMediaButton3.Media}}); Reset(AddMediaButton3); Refresh(DocLib)The DataTable Items property has the following formula:
Filter(DocLib, TrackingNum = _myID)
The Refresh() only pulls existing documents, it does not include the newly uploaded document. I know I can create a separate button with Refresh(DocLib) but I rather use this once I've exhausted all posibilities.