DataTables server-side processing problem

DataTables server-side processing problem

faszynskifaszynski Posts: 11Questions: 0Answers: 0
edited November 2012 in General
I have a code:
[code]
function prepareListCustomer() {
var req;
req = new AjaxAdapter;
req.dataType = 'json';
return req.query('GET', LIST_CUSTOMER_URL, {rowsOnPage: k, page: l}, function(responseServer, status, xhr) {
listCustomer = responseServer.dataListCustomer;
l = l + 1;
}, function(jqXHR, textStatus, errorThrown) {
var exception;
exception = jQuery.parseJSON(jqXHR.responseText);
return showError(exception);
});
}

function prepareDataTable() {
$('#displayData').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": LIST_CUSTOMER_URL
"fnServerData": function ( sSource, aoData, fnCallback, oSettings ) {
oSettings.jqXHR = $.ajax( {
"dataType": 'json',
"type": "GET",
"url": LIST_CUSTOMER_URL,
"data": {rows: k, pages: l},
"success": prepareListCustomer
} );
}
} );
}[/code]

Function prepareListCustomer() write data to listCustomre. I want display this data in prepareDataTable, how?
I want use server-side processing. In listCustomer I have JSON like:

[code]
{
"rowsPerPage": 10,
"page": 1,
"total": 100,
"rows": [
{
"id": 1,
"name": "nazwa1"
},
{
"id": 2,
"name": "nazwa2"
},
{
"id": 3,
"name": "nazwa3"
}
]
}
[/code]

I am reading http://datatables.net/examples/data_sources/server_side.html But I don't know how implement to my code?
This discussion has been closed.