I need to create a table with the first column that has a particular rowspan.
The result that I want is like this in detail I want the all row in the first column together. This is the code .html:
//This row all toogether in one td
<tr *ngFor="let count of listCount">
<ng-container *ngIf="check()">
<td rowspan="?"....>
<td>..
</ng-container>
</tr>
The problem is that:
- I don't know
rowspanwhich is its value
Anyone can help me?
