angular - Uncaught TypeError: Cannot set property 'length' of null at VirtualScroll.readUpdate -


i using simple ion-list ngfor display items in list in ionic 3 & working fine. used virtual scroll ion-list & getting following error:

uncaught typeerror: cannot set property 'length' of null @ virtualscroll.readupdate

code snippet:

 <ion-list [virtualscroll]="anarray" approxitemheight="50px">         <div *virtualitem="let arrayitem">     //other code  array declaration:      public anarray: any[];  in constructor:     this.anarray = [];  after network response:     this.anarray = data.result; 


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -