Answers for "ngfor angular 10"

7

syntax for ngfor

<ul>
    <li *ngFor="let item of items; let i = index" [attr.data-index]="i">
        {{item}}
    </li>
</ul>
Posted by: Guest on February-26-2020
1

how to get index for ngfor

*ngFor="let item of items; index as i;" 
// OR
*ngFor="let item of items; let i = index;"
// i will be the index, starting from 0 
// and you can show it in the string interpolation with {{ i }}
Posted by: Guest on August-02-2020
11

ngfor

<li *ngFor="let item of items; index as i; trackBy: trackByFn">...</li>
Posted by: Guest on March-31-2020
2

ngfor

<td *ngFor="let col of options.cols;index as i">
                        {{item[i]}} //Angular solution
                </td>
Posted by: Guest on June-23-2021

Browse Popular Code Answers by Language