Help needed in .fnReloadAjax

Help needed in .fnReloadAjax

saifursaifur Posts: 20Questions: 0Answers: 0
edited May 2012 in General
Hi, I am new in datatables and quiet happy with this but now stuck in fnReloadAjax plugin. I am pasting my whole code here.

[code]


$(document).ready(function() {


$.fn.dataTableExt.oApi.fnReloadAjax = function ( oSettings, sNewSource, fnCallback, bStandingRedraw )
{
//alert(sNewSource);

if ( typeof sNewSource != 'undefined' && sNewSource != null )
{
oSettings.sAjaxSource = sNewSource;
}
this.oApi._fnProcessingDisplay( oSettings, true );
var that = this;
var iStart = oSettings._iDisplayStart;
var aData = [];

this.oApi._fnServerParams( oSettings, aData );

oSettings.fnServerData( oSettings.sAjaxSource, aData, function(json) {
/* Clear the old information from the table */
that.oApi._fnClearTable( oSettings );

/* Got the data - add it to the table */
var aData = (oSettings.sAjaxDataProp !== "") ?
that.oApi._fnGetObjectDataFn( oSettings.sAjaxDataProp )( json ) : json;

for ( var i=0 ; i
This discussion has been closed.