I want to iterate on a data list to generate table rows but I don't know how to implement the loop when the cells in one column have a rowspan attribute.
My template markup:
<div class="table-responsive" >
<table class="table table-striped">
<tr>
<th>Project Name</th>
<th>Project Number</th>
</tr>
<tr>
<td rowspan="3">{{data.name}}</td>
<td>{{data.number1}}</td>
</tr>
<tr>
<td>{{data.number2}}</td>
</tr>
<tr>
<td>{{data.number3}}</td>
</tr>
</table>
</div>