SlideBox and Navigating to specific slide

I did something similar, but using a button group to select my desired slide index.

If you are building your app in Angular, use this code:

var gotoSlide = function(index) {
  $scope.$broadcast('slideBox.setSlide', index);
}

Call the gotoSlide function, with your desired slide number (index) inside of your tab, and it should work.

Note: the slide index numbers start from 0, 1, 2 … n.

Refer to this for more help:

1 Like