hi, I have a gallery with some images that I coded to change using buttons with the .Next() and .Previous() but also I want to be able to select the image I want to see from a Dropdown menu. for example: I want to start watching images from the number 5 image, I click the dropdown and select the number 5, the gallery changes to image number 5 and I can move from that image using the buttons with .Next() and .Previous().
thanks in advance
Well,
I’d suggested the following:
-
Add a gallery and bind it to a dataset
-
Set the dataset to only display one item per page
-
Add a pagination control
Now if you want to navigate directly to an image, you can use the pagination APIs to do so
Good luck
thanks Eli!!