Add image to image collection in mendix .
in home
Took static image from tool box.select the image which you upload .
In this way you can change image in Home page.
page
There are several ways. If it is a static image, you can add image to Image section first. and once the image is added you can use image widget on your page to point the image.
Another approach is create an entity and use system.Image as the generalised entity. Store your image in newly created entity.
Take a Dataview on your page and send the customized image object as parameter to the Data view. In this way you can load dynamic images from the database.
Hi Ankita,
You can add Image in Image Collection. And with the help of Static Image widget, you can add image on page. Then add some styling for image so that it can be responsive.
Thanks