在
jquery数据表中,我可以更改每页的记录选项
"aLengthMenu": [[50,100,150,200,-1],[50,"All"]],
任何人都知道如何以角度实现这一目标?
我试过了
$scope.dtOptions = DTOptionsBuilder.newOptions().withOption('order',[1,'asc']).withDisplayLength(250);
和
$scope.dtOptions = DTOptionsBuilder.newOptions().withOption('order','asc']).withOption('LengthMenu',[[50,"All"]])
我想要显示50,200
你很接近……使用’lengthMenu’选项只有一个数组:
$scope.dtOptions = DTOptionsBuilder.newOptions().withOption('order','asc']).withOption('lengthMenu',200])