I am trying to display a table with a large collection of elements. I want to paginate the table and load only the elements displayed on the current page. Now, the json is l
Based on the AngularJS $resource documentation, it should be possible to do this:
List.query({offset: 0, limit: 100, sortType: 'DESC' }, function(data, responseHeaders) { // you can access headers here });