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.
26 lines
544 B
JavaScript
26 lines
544 B
JavaScript
/**
|
|
* Set the point at which DataTables will start it's display of data in the
|
|
* table.
|
|
* @name fnDisplayStart
|
|
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
|
|
*
|
|
* @example
|
|
*
|
|
*/
|
|
|
|
$.fn.dataTableExt.oApi.fnDisplayStart = function ( oSettings, iStart, bRedraw )
|
|
{
|
|
if ( typeof bRedraw == 'undefined' )
|
|
{
|
|
bRedraw = true;
|
|
}
|
|
|
|
oSettings._iDisplayStart = iStart;
|
|
oSettings.oApi._fnCalculateEnd( oSettings );
|
|
|
|
if ( bRedraw )
|
|
{
|
|
oSettings.oApi._fnDraw( oSettings );
|
|
}
|
|
};
|