Does not seem to work
Appery('Imageitem').on("tap", function()
{
Tiggzi.navigateTo('Scoopon', {reloadPage: true})
});
Does not seem to work
Appery('Imageitem').on("tap", function()
{
Tiggzi.navigateTo('Scoopon', {reloadPage: true})
});
Hello,
You should use "mobilecarouselitem" instead of "Imageitem".
Why?
Imageitem is the Name Property of the Carousel Item as per Katya's example
Any response here?
Sorry for late response.
Did you try to use mobilecarouselitem instead of Imageitem ?
Code which Katya posted:
pre
Appery('mobilecarouselitem_3').on("tap",
function() {
// your JS code
}
);
/pre
Mobilecarouselitem isn't the same as Imageitem.
No my carousel item is not called mobilecarouselitem_3. It is called Imageitem. So yes as you can see I did try her example and it is not working.
Hello! Sorry for delay. If we understand correctly you have some service wich receives data to fill in Carousel. On service success event run the following code:
pre$('[name=Imageitem]').off().on("click", function() {
Appery.navigateTo('Scoopon', {reloadPage: true});
});/pre
Yes, carousel is filled with data.
No not on service success. On click or tap event of a particular image i need to navigate to the page associated with that image.
This is the same principle taht applies to a webite sliders. Click a slider image and you are navigated to the relevant page.
Hi Deon,
This code is not for navigating to another page on service success. It just adds Image click event handler (for navigating to another page on Image click).
That is what I want but it does not work. Can you please read my original request and tell me how to do that? This is wasting my time as it does not seem you know what I want to do? What don't you understand about my question?
Original Question.......................
Is there a way when I touch an image on the carousel, I can navigate to the page associated with the image?