I build hybrid app through Intel xdk (version 3759) using Ionic framework (version 1.0.0-beta.14) and i have a problem with infinite scroll. The 'on-infinite' directive calls function on the app loads, and don't stop.
My app pages is on unique html file (sub_pages).
In my scenario i need load all tickets, for this reason a use 'limitTo' to restrict tickets in page.
Piece of html
<div id="lista_tickets_page" ng-controller="TicketsController as ticketCtrl" class="upage-content vertical-col left hidden has-subheader">
<ion-scroll>
<div style="margin-top:100px;">
<ion-list class="widget uib_w_81 d-margins" data-uib="ionic/list" data-ver="0">
<div class="card card-1 border-card" data-uib="ionic/list_item" data-ver="0" id="list_ticket" ng-repeat="ticket in ticketCtrl.tickets | filter:ticket_cod | limitTo:numberDisplay" item="ticket" ng-class="ticketCtrl.getClass(ticket[2])">
</div>
</ion-list>
<ion-infinite-scroll ng-if="!noMoreItemsAvailable" on-infinite="loadMore()" distance="10%"></ion-infinite-scroll>
</div>
</ion-scroll>
</div>
Piece of controller
angular
.module('myApp')
.controller("TicketsController", ['Ticket', 'baseHost', 'baseCall', 'User', '$scope', '$rootScope', '$interval', '$timeout', '$ionicScrollDelegate',
function(Ticket, baseHost, baseCall, User, $scope, $rootScope, $interval, $timeout, $ionicScrollDelegate) {
var self = this;
$scope.numberDisplay = 5;
$scope.noMoreItemsAvailable = false;
$scope.loadMore = function() {
$scope.numberDisplay += 5;
if ($scope.numberDisplay >= self.count)
$scope.noMoreItemsAvailable = true;
$scope.$broadcast('scroll.infiniteScrollComplete');
};
$scope.$on('$stateChangeSuccess', function() {
$scope.loadMore();
});