I am trying to do the following html structure using angularjs ngRepeat:
Yes, that is a table with two repeated values 1,1, 2, 2 ... ten times.
The code is like this:
<table>
<th>expected</th>
<th>accomplished</th>
</table>
My problem is, when I use ng-repeat, I shall use it in one of the th tag. And so, it will repeat the tag ten times. I'd like to repeat one of the expected and one of the accomplished tag, sequentially.
Any help?? Thanks.
