2015-11-19 103 views
0

我已經很迭代智能表的角度是這樣的:NG重複+智能表不正確渲染

<tr> 
    <th></th> 
    <th ng-repeat="title in productColumnsTitle" class="text-center" st-sort="{{title.name}}">{{title.title}}</th> 
    <th></th> 
</tr> 

然後我還有其他見下表稱爲無NG-repeat屬性,但是我看到,所有的列都不能很好地呈現,看起來這個和標籤的寬度與下面的不一樣,任何人都知道爲什麼?

+0

添加width屬性兩個表的列。 – Rahul

回答

0

你不應該叫你的表頭ng-repeat,標題是在這裏您可以把您在訂單對象的屬性名稱,你會希望他們表現出

<thead> 
    <tr> 
    <th st-sort="firstName">first name</th> 
    <th>last name</th> 
    <th>birth date</th> 
    <th>balance</th> 
    <th>email</th> 
    </tr> 
</thead> 

技術上可以遍歷對象屬性使用諸如ng-repeat="(key, value) in data[0]"之類的東西,但是您將無法控制屬性的順序。

just iterate over plain table rows

還,請確保您使用單元格的寬度適當適量於colspan<td>屬性