Chumper / Datatable

This is a laravel 4 package for the server and client side of datatables at http://datatables.net/
https://github.com/Chumper/Datatable
388 stars 154 forks source link

Problem with bPaginate:false #319

Open ppiotrowski opened 9 years ago

ppiotrowski commented 9 years ago

When you set options "bPaginate:false" is the result of the collection is n-1 because datatable sends parameter iDisplayLength=-1 and in response we get an array of cutting off the last item

the solution is simple, but do not know if correct: BaseEngine.php l:526 if($value>0) $this->limit = $value;

sorry for my bad English :)