I have an array of objects which I will need to display in a two column layout Some columns have more data than other columns currently, so I need equi height rows.
I used bootstrap to display the data but it doesn't have equi height rows. I also used clearfix but doesn't work.
<ng-include src="itemTemplateSrc" ng-repeat-start="tag in item.fields | filter:filterTagsByTagName" class="col-md-12"></ng-include>
<div class="clearfix" ng-if="$index%2===1"></div>
<div ng-repeat-end=""></div>
now I wanted to display the data in html with two column layout without splitting my array as I have filters as well.
How do I display the data from single object array in an HTML table.