Retrieve file from file document entiry

0
Hi   I am storing images in a file document entity. Now I need the actual file content to be retrieved the object of this ‘fileDocument’ entity. How it is possible ? Thanks Iqbla
asked
2 answers
0

You can refer this documentation 

https://docs.mendix.com/refguide/retrieve/

answered
0

What is your goal of usage of the document?

  1. Handle it in a microflow > Use a retrieve action to get the document object and handle it in the microflow as you wish
  2. Download it as user > Retrieve the document in combination with the download file activity
  3. Show it in the app > use a page + dataview with context of document entity. WHile opening the page pass the document object (either select from list and pass, of microflow call) inside dataview use a document viewer widget https://marketplace.mendix.com/link/component/116214  
answered