作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
-6ren">
我正在开发一个数据驱动的应用程序,其中的列(表标题)会根据用户点击进行动态更新。我正在从 JSON 文件加载数据。
当我使用带有 ng-repeat="heading in gridHeaders">{{ heading }} 的普通表时它有效,但是当我包含 ui-grid 并且 View 使用不同的数据集更新时,网格单元变为空,列标题保持不变。如何更新 ui-grid 中的列定义?
这是 JSFiddle http://jsfiddle.net/masoom/svcxh6hu/7/
Controller .js
$scope.gridOptions = {
data: 'grid',
columnDefs : '' /* not sure how to use the <ng-repeat="heading in gridHeaders"> {{ heading}} here*/
};
/*
Watch for the change in the Tree's current node.
When user clicks on a node, $scope.currentNode will update
*/
$scope.$watch(function () {
return $scope.currentNode;
}, function () {
$scope.displayGrid(angular.fromJson($scope.currentNode.json));
});
/*
Sets the Grid's data model. The view will update when this is called.
*/
$scope.displayGrid = function (data) {
$scope.grid = data;
$scope.gridHeaders = new Array();
if (typeof data != 'undefined') {
for (var key in data[0]) {
$scope.gridHeaders.push(key);
}
}
}
index.html
<table ui-grid="{ data: grid }" class="grid1" ng-show="gridHeaders.length>0" >
<thead>
<tr>
<th ng-repeat="heading in gridHeaders">{{ heading }}</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="obj in grid">
<td ng-repeat="heading in gridHeaders">{{ obj[heading] }}</td>
</tr>
</tbody>
</table>
<div ui-grid="gridOptions" class="grid1" ng-show="gridHeaders.length>0" >
</div>
最佳答案
$scope.gridHeaders1 = [{field: 'name', displayName: 'Name'}, {field:'age', displayName:'Age'}];
$scope.gridHeaders2 = [{field: 'name', displayName: 'Name'}, {field:'age', displayName:'Age'}, {field:'occupation', displayName:'Occupation'}];
$scope.gridOptions = {
data: 'myData',
columnDefs: 'gridHeaders1'
};
关于javascript - UI Grid AngularJS - 如何更新 ui-grid 中的列标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29165191/
我是一名优秀的程序员,十分优秀!