I have angularJs ng-repeat i want to set max row limit (3 rows) on ng-repeat because user can add multiple values using modal window so this div is increasing.
我有angularJs ng-repeat我想在ng-repeat上设置最大行限制(3行),因为用户可以使用模态窗口添加多个值,因此这个div正在增加。
How can i achieve that task using angularJs or with css ?
如何使用angularJs或css实现该任务?
main.html
main.html中
<div class="orcitMultiSelectFieldValues" ng-show="selectedOwners.length" ng-click="openPrcsOwner()" ng-class="{'orcitMultiSelectFieldValues--disabled':!PROCESS_EDIT}">
<div class="orcitMultiSelectFieldTagList">
<div ng-repeat="selectedOwner in selectedOwners track by selectedOwner.workerKey" class="orcitMultiSelectTagItem">
<span>{{selectedOwner.fullName}}</span>
</div>
</div>
</div>
main.css
的main.css
.orcitMultiSelectFieldTagList{
min-height: 34px;
background-color: #fff;
border: 1px solid #ccc;
padding: 0 0 4px 0;
cursor: text;
}
.orcitMultiSelectTagItem {
display: inline-block;
margin: 4px 0 0 7px;
background-color: #428bca;
color: #fff;
padding: 0 15px 0 5px;
font-size: 14px;
line-height: 24px;
cursor: default;
transition: box-shadow 100ms linear;
position: relative
}
.orcitMultiSelectTagItem:hover {
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.orcitMultiSelectFieldValues--disabled .orcitMultiSelectFieldTagList {
background-color: #eee;
cursor: not-allowed;
}
2 个解决方案
#1
4
You can use limitTo to cap the number of rows -
您可以使用limitTo来限制行数 -
<div ng-repeat="ng-repeat="selectedOwner in selectedOwners | limitTo:3 track by selectedOwner.workerKey"">
//stuff
</div>
#2
0
dmoo's solution should be the accepted answer. However, it is also worth mentioning that you can also check the index against a hard-coded value or an angular expression/variable value like so:
dmoo的解决方案应该是公认的答案。但是,还值得一提的是,您还可以根据硬编码值或角度表达式/变量值检查索引,如下所示:
$scope.maxRowLimit = 3;
<div ng-repeat="item in items" ng-if="$index < maxRowLimit">
//stuff
</div>
#1
4
You can use limitTo to cap the number of rows -
您可以使用limitTo来限制行数 -
<div ng-repeat="ng-repeat="selectedOwner in selectedOwners | limitTo:3 track by selectedOwner.workerKey"">
//stuff
</div>
#2
0
dmoo's solution should be the accepted answer. However, it is also worth mentioning that you can also check the index against a hard-coded value or an angular expression/variable value like so:
dmoo的解决方案应该是公认的答案。但是,还值得一提的是,您还可以根据硬编码值或角度表达式/变量值检查索引,如下所示:
$scope.maxRowLimit = 3;
<div ng-repeat="item in items" ng-if="$index < maxRowLimit">
//stuff
</div>