我想將手風琴指令分成多列。這是我到目前爲止有:如何將Angular UI Bootstrap手風琴分爲多列?
<accordion>
<accordion-group ng-repeat="d in dimensions" heading="{{d.name}}">
{{d.description}}
</accordion-group>
</accordion>
眼下,它顯示在一行中的手風琴直降的頁面,就像這樣:
Acc1
Acc2
Acc3
Acc4
Acc5
Acc6
我想它,像這樣被分開到N列(在這種情況下是3列):
Acc1 Acc2 Acc3
Acc4 Acc5 Acc6
現在我正在尋找一種過濾方法,但我很好奇是否有更好的方法。
控制器邏輯現在基本上僅限於填充$scope.dimensions
。
Here is a plunker showing the basics
可能的重複[如何使用bootstrap分割三列的ng-repeat數據](http://stackoverflow.com/questions/21644493/how-to-split-the-ng-repeat-data-with-三列使用引導) – Codeman 2015-03-13 18:42:28