ionic-framework
मांग पर लोड आइटम दिखाने के लिए आयोनिक अनंत स्क्रॉल (पहले से ही उपलब्ध डेटा एचटीपी अनुरोध द्वारा नहीं)
खोज…
मांग पर उपलब्ध डेटा की संख्या n लोड करें
HTML:
<li class="item" ng-repeat="schedule in Schedules | filter:scheduleSearch | limitTo:numberOfItemsToDisplay">
Display some data
</li>
<ion-infinite-scroll on-infinite="addMoreItem()" ng-if="Schedules.length > numberOfItemsToDisplay"></ion-infinite-scroll>
नियंत्रक:
$scope.numberOfItemsToDisplay = 10; // Use it with limit to in ng-repeat
$scope.addMoreItem = function(done) {
if ($scope.Schedules.length > $scope.numberOfItemsToDisplay)
$scope.numberOfItemsToDisplay += 10; // load number of more items
$scope.$broadcast('scroll.infiniteScrollComplete')
}
हर बार AddMoreItem () कॉल पर 10 आइटम लोड करें।
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow