my html is simple like this
<ion-list>
<ion-item *ngFor="let item of editLists,index as i">
<ion-input [(ngModel)]="editLists[i]"></ion-input>
</ion-item>
</ion-list>
<ion-input [(ngModel)]="foo"></ion-input>
it'ok type words when ion-input outside ngFor; but when inside it will lose focus when i type one word how? many thanks