bServerSide on server side
bServerSide on server side
blurrblurr
Posts: 17Questions: 0Answers: 0
I have a table with 150 columns and 400+ records.
when I load with dataTable it actually hang. I intend to use bServerSide so it will do all the process at server side.
$('#mainTable').dataTable( {
"bDestroy": true,
"bRetrieve": true,
"bSortClasses": false,
"iDeferLoading": 57 ,
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "table.html",
"fnServerData": function ( sSource, aoData, fnCallback ) {
$.ajax( {
"dataType": 'json',
"type": "POST",
"url": sSource,
"data": aoData,
"success": fnCallback
} );
}
} );
With only oracle and php generated HTML table, am I able to get bServerSide moving?
How to make it work?
when I load with dataTable it actually hang. I intend to use bServerSide so it will do all the process at server side.
$('#mainTable').dataTable( {
"bDestroy": true,
"bRetrieve": true,
"bSortClasses": false,
"iDeferLoading": 57 ,
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "table.html",
"fnServerData": function ( sSource, aoData, fnCallback ) {
$.ajax( {
"dataType": 'json',
"type": "POST",
"url": sSource,
"data": aoData,
"success": fnCallback
} );
}
} );
With only oracle and php generated HTML table, am I able to get bServerSide moving?
How to make it work?
This discussion has been closed.
Replies
Allan
DataTables warning: Attempted to initalise DataTables on a node which is not a table:DIV
Does it able to read html table as output from server side?
I have only
........
Do I need to re write this page to cater for server side?
Allan