Hi Mentors,
I am trying to call click event on carousel when you click on any image/pic but it doesn't work.
Any suggestion?
Here is my code
var oCarousel = new sap.ui.commons.Carousel({
text : 'Car',
click: function() {
alert("test");
}
});
oCarousel.setWidth("100%");
oCarousel.setOrientation("horizontal");
return oCarousel;
} |
});