I want to iterator through a table containing input fields without using tab.
As tab only iterate through right.
I need to use keyboard arrow to iterate through the input fields.
<td class="td-pad" *ngFor="let size of sizeRange;">
<div class="input-group">
<input type="" class="form-control fs-tr" (change)="changeSelectedQuantity('F',size)" [(ngModel)]="selectedStock[stock]['F'][size]" [disabled]="availableStock[stock]['F'][size]<=0" >
<div class="input-group-append">
<span class="input-group-text">/ {{availableStock[stock]['F'][size] ? availableStock[stock]['F'][size] : 0}}</span>
</div>
</div>
</td>
As tab only iterate through right.means what? Shift-tab goes the other way