I have a REST service that returns data. with Hal+json format. How do I consume the response in my Kendo Angular grid. My angular controller looks like this, but doesn't return anything:
...
vm.mainGridOptions = {
dataSource: {
transport: {
read: {
url: 'http://localhost:8080/people',
dataType: 'jsonp'
}
},...
.