fnCallback not calling fnRowCallback second time, server side pagination.

fnCallback not calling fnRowCallback second time, server side pagination.

bhupendra21589bhupendra21589 Posts: 3Questions: 1Answers: 0

"fnServerData": function(sSource, aoData, fnCallback,oSettings) {
var getdata = getpostparams( "array" );
oSettings.jqXHR = $.ajax( {
"dataType": 'json',
"type": "POST",
"url": sSource,
"data": { "from": getdata[ 'from' ], "to": getdata[ 'to' ], "salesmen": getdata[ 'salesmen' ],
},
"success": function (msg){console.log("hi1");console.log(fnCallback);
fnCallback(msg)
}
} );
},
"fnRowCallback": function( nRow, aData, iDisplayIndex ){console.log("hi");
}

Answers

This discussion has been closed.