作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果字段包含多个项目的数组,我需要指定 x 个单位的计数。我如何在 ng-grid 字段显示名称中执行此操作?
Json 示例:$scope.data = [{id: {1, 3}, 纳米:无名氏} , {id: {2,4,5}, nm: Jane Doe}]
当前结果:
Id Name
-------------- -------------------------------
1,3 John Doe
2,4,5 Jane Doe
期望的结果:
Id Name
-------------- -------------------------------
2 Ids John Doe
3 Ids Jane Doe
当前的 Angular 代码:
$scope.gridOptions = {
data: 'data',
selectedItems: $scope.mySelections,
columnDefs: [
{field: 'id', displayName: 'Id', width: '***'},
{field: 'nm', displayName: 'Name', width: '****'}],
multiSelect: false
};
最佳答案
只需像这样创建一个单元格模板:
<div class="ngCellText" ng-class="col.colIndex()"><span ng-cell-text>{{row.getProperty("id").length}} Ids</span></div>
然后像这样应用它:
var app = angular.module('myApp', ['ngGrid']);
app.controller('MyCtrl', function($scope) {
$scope.myData = [{id: [1, 12], name: 'John Doe'},
{id: [3, 7, 9, 6, 2], name: 'John Doe'},
{id: [10, 52, 78], name: 'John Doe'},
{id: [101, 88, 72, 99], name: 'John Doe'}];
$scope.columnDefs = [
{
displayName:'Id',
cellTemplate: 'cellTemplate.html'
},
{
field:'name', displayName:'Name'
}
]
$scope.gridOptions = {
data: 'myData',
columnDefs: $scope.columnDefs
};
});
示例: Plunker
关于javascript - 在angular ng-grid中如何指定子数组的计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21708657/
我是一名优秀的程序员,十分优秀!