How can I fill in the following table html structure with json data in a dynamic way? (with AngularJS).
Here is the basic HTML structure:
<table class="some styling">
<tbody>
<tr>
<td><a title="test" href="#"><span>Just some tests</span></a></td>
<td><a title="test" href="#"><span>Just some tests</span></a></td>
<td><a title="test" href="#"><span>Just some tests</span></a></td>
</tr>
<tr>
<td><a title="test" href="#"><span>Just some tests</span></a></td>
<td><a title="test" href="#"><span>Just some tests</span></a></td>
<td><a title="test" href="#"><span>Just some tests</span></a></td>
</tr>
</tbody>
</table>
The difficult part is how to determine the "tr" elements. There are always 3 td elements in 1 tr element. Only the amount of TD elements may vary.
Thanks in advance
ng-repeat? It very much depends how your JSON / Array looks like.