Show products in boxes using angularjs ng repeat and bootstrap classes, but it is showing in wrong way

225 Views Asked by At

I want to show products in boxes as products are showing on other ecommerce sites.

I am using AngularJS ng-repeat and bootstrap classes, but it is showing products in wrong style.

Here is my code:

<div class="row" id="grdDiv">
    <div ng-repeat="category in groupMenuCategories">
        <div class="col-md-3 col-lg-3" ng-repeat="grpMenuItem in category.menuItems">
            {{grpMenuItem.itemName}}
        </div>
    </div>
</div>

Required Output on website:

item1 item2 item3 item4

item5 item6 item7 item8 . . .

Current Output:

item1 item4 item6

item2 item5 item7

item3 (no item) item8

(no item) - item9

Link: http://plnkr.co/edit/wyAXgfa2U4gCBtQmYSr2?p=info

1

There are 1 best solutions below

4
On BEST ANSWER

You can use

<div class="row">
    <div class="col-sm-3" ng-repeat="grpMenuItem in category.menuItems"> 
        {{grpMenuItem.itemName}}
    </div>
</div>

to get 4 equal-width columns.

If you need each of 4 columns in seperate rows you can try the following

<div ng-repeat="grpMenuItem in category.menuItems" class="row" ng-if="$index<category.menuItems.length/4+1">
    <div  ng-repeat="grpMenuItem in category.menuItems" class="col-sm-3" ng-if="$index>=4*$parent.$index && $index <= 4*($parent.$index+1)-1">
    </div>
</div>

Demo

problem in your code was your menuItem is array therefore you have to get the value itemName this way

<div ng-repeat="grpMenuItem in groupMenuCategories" class="row" ng-if="$index<groupMenuCategories.length/4+1">
    <div ng-repeat="grpMenuItem in groupMenuCategories" class="col-sm-3" ng-if="$index>=4*$parent.$index && $index <= 4*($parent.$index+1)-1">
        <h4>{{grpMenuItem.menuItems[0].itemName}}</h4>
    </div>
</div>

Updated plunker