In the jquery data table, I can change the settings for writing to the page
"aLengthMenu": [[50, 100, 150, 200, -1], [50, 100, 150, 200, "All"]],
Does anyone know how to achieve this in angular?
I tried
$scope.dtOptions = DTOptionsBuilder.newOptions().withOption('order', [1, 'asc']).withDisplayLength(250);
and
$scope.dtOptions = DTOptionsBuilder.newOptions().withOption('order', [1, 'asc']).withOption('LengthMenu', [[50, 100, 150, 200, -1], [50, 100, 150, 200, "All"]])
I want to show 50, 100, 150, 200
I searched for http://l-lin.imtqy.com/angular-datatables/#/api but could not find