hi I have a code like the following
<div *ngFor="let mobile of mobileList; let moIndx = index;">
<div class="peopleMobileTxtDiv">
<input [disabled]="mobile.disabled" class="peopleMobileTxtBox" type="text" name={{mobile.no}}+"moIndx"
[value]="mobile.no" [(ngModel)]="mobile.no" required>
</div>
</div>
I need to make the texbox name a combination of string + index dynamically. If the texbox name is same, as I change value of one all gets changed. So I tried to do as shown but its an error...