I'm trying to do this in angular:
<tr (each)>
<td>{{attribute1}}</td>
<td>{{attribute2}}</td>
<td>{{attribute3}}</td>
</tr>
But I need a wide TD after each TR with colspan 3 like:
<tr>
<td colspan="3">Another content for row 1</td>
</tr>
As you can see, the (angular each) is inside the <tr>, for my understanding, there's no way to put the colspan row...
Can you help?