I have a display problem when the database becomes large ,it hangs and it gives no answer
with an average database no prblem
how i can apply server-side processing in my case thanks
I have a display problem when the database becomes large ,it hangs and it gives no answer
with an average database no prblem
how i can apply server-side processing in my case thanks
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sachin SinghPosted Nov 5, 2021, 6:49 AM
Mouhssine tahriPosted Nov 5, 2021, 10:56 AM
Mouhssine tahriPosted Nov 4, 2021, 12:38 PM
THANKS SAchin for replay
out.push( [ i+'-1', i+'-2', i+'-3', i+'-4', i+'-5' ] );
I am a beginner can you explain how use my function get_allStatEntite and fillStatPosteDataTable in that case
$(document).ready(function() {
$('#example').DataTable( {
serverSide: true,
ordering: false,
searching: false,
ajax: function ( data, callback, settings ) {
var out = [];
for ( var i=data.start, ien=data.start+data.length ; i
}
setTimeout( function () {
callback( {
draw: data.draw,
data: out,
recordsTotal: 5000000,
recordsFiltered: 5000000
} );
}, 50 );
},
scrollY: 200,
scroller: {
loadingIndicator: true
},
} );
} );
Sachin SinghPosted Nov 4, 2021, 9:40 AM
Mouhssine tahriPosted Nov 4, 2021, 9:03 AM