Open GoogleCodeExporter opened 9 years ago
This is fnRealoadAjax implementation:
$.fn.dataTableExt.oApi.fnReloadAjax = function ( oSettings, sNewSource ) {
if ( typeof sNewSource != 'undefined' ) {
oSettings.sAjaxSource = sNewSource;
}
this.fnClearTable( this );
this.oApi._fnProcessingDisplay( oSettings, true );
$.getJSON( oSettings.sAjaxSource, null, $.proxy(
function(json) {
for ( var i=0 ; i<json.aaData.length ; i++ ) {
this.oApi._fnAddData( oSettings, json.aaData[i] );
}
oSettings.aiDisplay = oSettings.aiDisplayMaster.slice();
this.fnDraw( this );
this.oApi._fnProcessingDisplay( oSettings, false );
},
this
));
};
Original comment by michele....@nogap.it
on 27 Jun 2012 at 9:11
Please see my comments on Issue 34. Select and Checklist options, if given
with no values, don't generate any values in the select list when data is
populated with "aaData".
Original comment by KAkkape...@gmail.com
on 14 Sep 2012 at 5:11
Original issue reported on code.google.com by
michele....@nogap.it
on 27 Jun 2012 at 8:35