I am working with ngTable in angular-1. I am fetching huge set of date with lumen API and its take too much time. So I will do it lazy API. and API working perfectly in postman,
But how implement in ngTable in angular-1. I am new with ngTable.
$scope.tableParams2 = new NgTableParams({
page: 1, // show first page
count: response.data.data.per_page, // count per page
},
{
total: response.data.data.total,// length of data
dataset: $scope.listCandidatesActives
}
);
To get started with angularjs ngTable, please visit http://esvit.github.io/ng-table/#/intro/demo-real-world
and the basic configuration will be
Example of this can also be found in the tutorials