Button or microflow to open any document

1
Hi , I have a data grid, in which there is a list of documents which were uploaded from some different screen. Now what I want is to be enable to open any document by selecting any row from the grid without opening any further screen in order to download the document. Please let me know, how can I do that? Thanks & Regards, Rajnish Kumar
asked
1 answers
2

Create a microflow to which the selected object in the grid is passed, with the trigger button in the data grid's control bar.

Then in that microflow, add a Download Document activity and set the document passed to the microflow as the one to be downloaded.

I'd advise also putting in an exclusive split to check if the HasContents boolean on the passed file document was set to true before the download activity.

answered