grid之过滤器设置

之前关于angular ui-grid过滤器设置,最近需要回顾,就顺便发到随笔上了

var app = angular.module('app', ['ui.grid', 'ui.grid.edit']); app.controller('MainCtrl', ['$scope', '$http', function ($scope, $http) { $scope.gridOptions = { columnDefs: [ { field: 'name' }, { field: 'amount', name: 'Number', cellFilter: 'fractionFilter' }, { field: 'amount', name: 'Currency', cellFilter: 'currencyFilter:this' } ] }; $http.get('data.json') .success(function (data) { $scope.gridOptions.data = data; }); }]) .filter('fractionFilter', function () { return function (value) { return value.toFixed(0); }; }) .filter('currencyFilter', function () { var currencyMap = { 'dollar': '$', 'pound': '£', 'euro': '' }; return function (value, scope) { return currencyMap[scope.row.entity.currency] + value.toFixed(2); }; })

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyxfjw.html