我正在http://getbootstrap.com/javascript/#buttons-examples上执行此ref:checkbox示例
现在问题是这种类型数组有时候少于5个项目.当按钮组有超过5个项目时,它会以丑陋的方式分割到下一行.
我怎么能做这样的事情
ng-repeat on 0-4 of array - create a button group for these 5 items ng-repeat on 5-9 of array (if array length is >5) ... ng-repeat on 10-14 of array (if array length is >10) ... ...
注意:更好的是查看已使用了多少个字符.每种类型都有不同的名称,有些长一些,所以有时候一个很长的名字可能会占用面板的所有宽度.
随着ng-repeat
使用两种limitTo
过滤器,正和负值.
http://docs.angularjs.org/api/ng/filter/limitTo
下面是演示http://plnkr.co/edit/8LXXnH?p=preview
更新示例:
第一个ng-repeat将返回0到4的数组,第二个ng-repeat将返回5到9.