Ajax Datatable - Colreoder not working properly with server side processing

Ajax Datatable - Colreoder not working properly with server side processing

mani04bellmani04bell Posts: 1Questions: 1Answers: 0

Hi, I am trying to implement the colreoder functionality in my application,where we are fetching the data from server. Reorder happens only for current page, if I moved to next page the header is in same place where as column data gets changed as original position. below are by sample code.
var oTable = $('#resulttableSummary').dataTable({
// sDom: 'R<"top"i>rt<"bottom"flp><"clear">',
// dom: 'Rlfrtip',
//"sDom": 'Rlfrtip',
////"bDestroy":true,
"bSort": false,
"bProcessing": true,
"bServerSide": true,
"bJQueryUI": true,
"bAutoWidth": false,
"bFilter": false,
"bLengthChange": false,
"bPaginate": true,
"bRetrieve": true,
"sServerMethod": "POST"
"iScrollLoadGap": 50, //50
"iDisplayLength": 150,
"bScrollInfinite": true,
//"sScrollY": "150px", -- If i enable this even in current page not working
"sAjaxSource": CarrierSummaryPath,
});
new $.fn.dataTable.ColReorder(oTable);

Kindly help me out on this.
Thanks in advance.

This discussion has been closed.