mirror of
https://github.com/DataTables/DataTables.git
synced 2024-11-30 12:24:10 +01:00
fde6ba858a
New: The distance from the end of the current scrolling container before new data is added (with infinite scrolling) can be controlled with iScrollLoadGap (which is a numeric value in pixels). New: Example (basic_init/scrolling_y_infinite.html) to show how infinite scrolling can be used. Fixed: iDraw was not being incremented for a draw that did not use server-side processing.
41 lines
889 B
JavaScript
Executable File
41 lines
889 B
JavaScript
Executable File
// DATA_TEMPLATE: dom_data
|
|
oTest.fnStart( "iDraw - check that iDraw increments for each draw" );
|
|
|
|
|
|
$(document).ready( function () {
|
|
var oTable = $('#example').dataTable();
|
|
var oSettings = oTable.fnSettings();
|
|
|
|
oTest.fnTest(
|
|
"After first draw, iDraw is 1",
|
|
null,
|
|
function () { return oSettings.iDraw == 1; }
|
|
);
|
|
|
|
oTest.fnTest(
|
|
"After second draw, iDraw is 2",
|
|
function () { oTable.fnDraw() },
|
|
function () { return oSettings.iDraw == 2; }
|
|
);
|
|
|
|
oTest.fnTest(
|
|
"After sort",
|
|
function () { oTable.fnSort([[1,'asc']]) },
|
|
function () { return oSettings.iDraw == 3; }
|
|
);
|
|
|
|
oTest.fnTest(
|
|
"After filter",
|
|
function () { oTable.fnFilter('gecko') },
|
|
function () { return oSettings.iDraw == 4; }
|
|
);
|
|
|
|
oTest.fnTest(
|
|
"After another filter",
|
|
function () { oTable.fnFilter('gec') },
|
|
function () { return oSettings.iDraw == 5; }
|
|
);
|
|
|
|
|
|
oTest.fnComplete();
|
|
} ); |