How to attach multiple images using image uploader ?

0
Hello, I have created one image entity and the entity has generalized with System.Image. So I used image uploader widget but using that I can upload only one image at a time.If I select another image the first one has gone. I want to select multiple images at a time and upload. So how to do that ?
asked
2 answers
3

Hi Madhura,

 

You can use https://marketplace.mendix.com/link/component/111497 File dropper widget . Make sure you have one to many relationship. If only one generalized entity can handle only one image.

Create an one entity give relation between  them as one to many to load multiple images.

refer the documentation of File Dropper for more information.

Hope this helps!

answered
3

HI Madhura , 

Please find the below image and set your associations like this 

Create association below like this

1 CPIP[ Your main object ] --- * Multiple Doc Container  [ Support object ] and 1 Doc Container –  * Multiple Document [image object] .

 

In this you can able to add multiple images

 

answered