Bulk upload of images into Mendix

0
Hi, I am new to Mendix and am trying to port an expense application over. Some records have an image (Receipt) that I’d like to display in Mendix. It is clear how to upload new images via the image uploader and image viewer. Is it possible to bulk upload the images I have into Mendix? (These are external urls in my database.) I have not found any documentation or external data connector that addresses this. Thanks!
asked
2 answers
1

Do you want to keep them as external URLs that are viewable in your app, or do you want to import the images into Mendix storage?

Mendix storage:

In a microflow you can import an image from a URL using the CommunityCommons function StoreURLToFileDocument

Keep as URLs:

Store the urls as a string. Use this widget to display your images: https://appstore.home.mendix.com/link/app/65122/

answered
0

Thanks! This is just what I needed.

answered