Hello everybody,
I have a probleme with a ion-list. The scrollview doesn’t work !!!
I have a easier code for debug but the probleme persist.
<ion-view title="TechForum 2014">
<ion-content class="has-header has-tabs" padding="true">
<ion-list>
<ion-item ng-repeat="tes in test">
<p>{{tes.title}}</p>
</ion-item>
</ion-list>
</ion-content>
</ion-view>
Javascript
ConferencesService.getLocalConferences().query(
function(data){
console.log(data);
console.log("Success to retreive Local Conference");
$scope.test = data;
},
function(reason){
console.log("Impossible to retreive Local Conference");
}
);
getLocalConferences : function(){
confFactory.conferencesResource = $resource('data/conferences/:id.json',{id:'@id'});
return confFactory.conferencesResource;
},
With Andb debug, i see this error :
Uncaught TypeError: Cannot read property ‘preventScroll’ of undefined at file:///android_asset/www/app/libs/ionic/release/js/ionic.bundle.js:3549
preventScroll ???
Do you have a idea ?
More, app work correctly in android >4.0 and the scroll view doesn’t work in 2.3
help me please ^^
i use ionic beta 1.0