You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/**
|
|
|
|
* Redraw the table (i.e. fnDraw) to take account of sorting and filtering,
|
|
|
|
* but retain the current pagination settings.
|
|
|
|
*
|
|
|
|
* @name fnStandingRedraw
|
|
|
|
* @summary
|
|
|
|
* @author Jonathan Hoguet
|
|
|
|
*
|
|
|
|
* @example
|
|
|
|
* $(document).ready(function() {
|
|
|
|
* var oTable = $('.dataTable').dataTable()
|
|
|
|
* oTable.fnStandingRedraw();
|
|
|
|
* } );
|
|
|
|
*/
|
|
|
|
|
|
|
|
jQuery.fn.dataTableExt.oApi.fnStandingRedraw = function(oSettings) {
|
|
|
|
if(oSettings.oFeatures.bServerSide === false){
|
|
|
|
var before = oSettings._iDisplayStart;
|
|
|
|
|
|
|
|
oSettings.oApi._fnReDraw(oSettings);
|
|
|
|
|
|
|
|
// iDisplayStart has been reset to zero - so lets change it back
|
|
|
|
oSettings._iDisplayStart = before;
|
|
|
|
oSettings.oApi._fnCalculateEnd(oSettings);
|
|
|
|
}
|
|
|
|
|
|
|
|
// draw the 'current' page
|
|
|
|
oSettings.oApi._fnDraw(oSettings);
|
|
|
|
};
|