uploading 20 images

1
I want to upload 20 images and after selecting the right one, use it in a pdf. At this moment I can upload only 1 image. When I rerun the process and upload another image, the first image is gone. Instead of adding new images, I replace them. Can you tell me what I have to do to make it right? Piet
asked
2 answers
3

For each new image you upload, you'll need to create a new object (of type System.Image or a specialization of this entity) for the image to be stored in. For instance, if your images were displayed in a Datagrid, the New button on the datagrid would create an image object each time it is clicked. In this way you could create and upload 20 images.

I am not sure how you've built this currently, but you could look at the DropZone widget in the appstore, which provides the ability to upload multiple images.

answered
0

Thanks Mike, I've got it working. The solution is displaying the images in a Datagrid and via the New-button create a new image object

answered