I've looked around and was able to find similar questions to mine but not the same. This might be a realy noobie question but I have no idea how to do this. I'm using ng-repeat to show 4 checkboxes like so:
<tr ng-repeat="type in dataType">
<td><checkbox ng-model="type.checked"></checkbox> {{type.name}}</td>
</tr>
This gives me 4 checkboxes in one row. But what i would like is for the first two checkboxes to be side by side. So 2x td inside one tr. However when i change the code to
<tr ng-repeat="type in dataType">
<td><checkbox ng-model="type.checked"></checkbox> {{type.name}}</td>
<td><checkbox ng-model="type.checked"></checkbox> {{type.name}}</td>
</tr>
It just multiplies the checkboxes and i end up with 2 rows and 8 checkboxes. So how do i get ng-repeat to change checkbox 2 into the next iteration of type?
You can always restructure the variables, for example:
And then: