Hi I try populate my datatable using feathers service in this way:
app.service('pupils').find({}, (error, result) => {
$('#pupils > table').DataTable({
"pageLength": view.short,
"lengthChange": false,
"info" : false,
"responsive": true,
"data": result.data,
"deferRender": true,
"columns": [ ... ]
});
});
I have more than 100 testing records but in callback I receive only 10 records. I receive more records after added below code in feathers service:
paginate: {
default: 100,
max: 200
}
but I would like to disable pagination for received all records from mongo. How can I do that?