First column repeating in both froze & unfroze table in Primeng table
问题 I am working on one project where I used PrimeNg table with froze & unfroze column property and its working fine in normal column creating with *NgFor but if I add new column without *NgFor its repeating in both froze & unfroze table. How to overcome this issue as I want that column only on froze column not on unfroze column. My Code: <ng-template pTemplate="header" let-columns> <tr> <th>All</th> <th *ngFor="let col of columns"> {{col.header}} </th> </tr> </ng-template> <ng-template pTemplate