Hello there,
I’m using a ion-slide-box and i want to display directly a given slide using routes like /slide/:contentid and active-slide attribute.
<ion-slide-box active-slide="currentSlide" does-continue="true" auto-play="false" on-slide-changed="slideChanged($index)" show-pager="false">
When the controller initialize i don’t have yet the slide number. I’m first getting the contentid param.
$scope.contenttid = parseInt($state.params.contentid);
Then i use a service to get all contents and use a filter to find the index for setting the active slide.
EventService.getContentList().then(
function(allcontent){
if(allcontent){
$scope.data.contents = allcontent;
var found = null;
if( found = $filter('filter')($scope.data.contents , {id: $scope.contentid}, true) )
$scope.slideid = $scope.data.contents.indexOf(found[0]);
Now, whenever i try to set $scope.currentSlide = $scope.slideid;
on View events
It is either too late ( there is a slide transition from 0 to currentSlide ) or too early (and triggers an error with no line number ref to my controller code)
I’m new to Ionic/angular so i tried many things before posting here but i’m stuck :-/
Can anyone help me with this ?
Thanks!