ui-grid symbols issue
You need to download the font files: ui-grid.woff ui-grid.eot ui-grid.svg ui-grid.ttf from here. And move them where your ui-grid.min.css lives.
You need to download the font files: ui-grid.woff ui-grid.eot ui-grid.svg ui-grid.ttf from here. And move them where your ui-grid.min.css lives.
var app = angular.module(‘app’, [‘ngTouch’, ‘ui.grid’, ‘ui.grid.infiniteScroll’]); app.controller(‘MainCtrl’, function ($scope, $http, $timeout) { var vm = this; vm.gridOptions = { infiniteScrollRowsFromEnd: 40, infiniteScrollUp: true, infiniteScrollDown: true, columnDefs: [ { name:’id’}, { name:’name’ }, { name:’age’ } ], data: ‘data’, onRegisterApi: function(gridApi){ gridApi.infiniteScroll.on.needLoadMoreData($scope, getDataDown); gridApi.infiniteScroll.on.needLoadMoreDataTop($scope, getDataUp); vm.gridApi = gridApi; } }; $scope.data = []; vm.firstPage = … Read more