Is it possible to create a table with multiple columns via an ng-repeat?
I'm not sure there is a more eloquent way to ask, so below I've posted a sample template of sorts. This does not work since the surrounding div breaks the table.
For example:
<table>
<tr>
<div ng-repeat="num in [1,2,3]">
<td>1</td>
<td>2</td>
<td>3</td>
<td>Avg</td>
</div>
</tr>
Expected Output:
<table>
<tr>
<td>1</td> <td>2</td> <td>3</td> <td>Avg</td>
<td>1</td> <td>2</td> <td>3</td> <td>Avg</td>
<td>1</td> <td>2</td> <td>3</td> <td>Avg</td>
</tr>
</table>