ServerSide Processing

ServerSide Processing

ZeroCoolZeroCool Posts: 2Questions: 0Answers: 0
edited January 2012 in General
Hi Guys,

having a real trouble
I like how DataTables with "FixedColumns" is working and making table life easier.
But now I have troubles with an big amount of data to handle.
On the normal way, it tooks up to 200 seconds to load the table.

Now i read about the ServerSide Processing and found the litte information about it.
But what should the "sAjaxSource" File do?
Anyone can help me and give 1 or 2 litte examples for me?

my litte call
[code]

$(document).ready( function () {
var oTable = $('#daytable').dataTable( {
\"bProcessing\": true,
\"bServerSide\": true,
\"sAjaxSource\": \"include/ssi_test.php\",
\"sScrollX\": \"624\",
\"sScrollXInner\": \"1000%%\",
\"sScrollY\": \"500\",
\"bScrollCollapse\": true,
\"bFilter\": false,
\"bInfo\": false,
\"bPaginate\": false,
\"fnInitComplete\": function () {
new FixedColumns( oTable, {
\"iLeftColumns\": 1,
\"iLeftWidth\": 200
} ) ;
} ;
} );
}

[/code]

Greets Rainhard aka ZeroCool/Dumper
This discussion has been closed.