Sequence list load works fine in vuforia studio but not in view app
Hello Community, So i start my experience and fetch the model from thingworx and then jump to new view and there i have this below code to show the sequences in the list but unfortunately it works perfectly fine in browser but not in view app. The view app is unable to show the list of sequences to select.. Can someone please see that what is a problem in the below code? or how can i resolve this issue. As you guys can see binding also in the below from model to show the sequences. The modelLoaded function is not getting executed and that is an issue.
angular.element(document).ready(function () {
$timeout(function () {
$scope.setWidgetProp('model-1','src',$scope.app.params.modelPVZFile);
$scope.$applyAsync();
$rootScope.$on('modelLoaded', function() {
$scope.view.wdg["spinner-1"].visible = false;
console.log("Model and Sequence both are loaded!");
});
}, 100);
})


