How to populate Kendo grid with an angular $http GET call
I'm having trouble binding a Kendo grid to an angular service call. I have an angular $http service that has a getData() method which looks like this: 'use-strict'; payrollApp.factory('dataService', function ($http, $q) { return { getData: function () { var deferred = $q.defer(); $http({ method: 'GET', url: '/api/apihome/', }).success(function (data, status, headers, config) { deferred.resolve(data); }).error(function (data, status, headers, config) { deferred.reject(status); }); return deferred.promise; }, }; }); I then set the grids DataSource in my controller as follows: 'use-strict';