Image carousel issue

Hi

As a part of my app I need to take photo’s of machines in field. As per attached you will see the screen structure as an example. As per documentation I had 4 image columns labelled sequentially and Glide created the array

.

What’s happening is that only 1 image will upload and every new image replaces the old, it doesn’t add to it.

Could you provide some advice? Presumably I’ve set it up incorrectly (Structure, component??)

cheers

You would need to have multiple image pickers/image component with upload image action for it to work. Seems like you’re just uploading to the first one.

1 Like

Thank you. Do you mean as per attached. Essentially there are blank frames until all are populated and then it shows a single scrollable picture frame?
cheers

It won’t show automatically. You have to point to the image array that Glide created for it to show a carousel.

Hi
It was pointed to the array, but in thinking about it does it need to be the image picker component? If so, the image picker wants to point to the individual columns. The Image component will point to the array so presumably if I want to take 4 photo’s I need to create 4 image picker components (1 for each column) and in the display sheet have the Image component which will display the images in a carousel?
cheers

To sum it up:

  • You create 4 image picker components on the screen where you want users to upload images, pointing to your 4 columns.

  • Where you want to display the carousel, create 1 image component pointing to the resulting array of images.

1 Like

Thank you, appreciate the help. All done and working, I misunderstood the way the component worked.
cheers

1 Like

Glad it could help. Do let us know if you have any other questions.