X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=webapp%2Fresources%2Fdatatables-1.9.4%2Fmedia%2Funit_testing%2Ftests_onhold%2F4_server-side%2F2600.js;fp=webapp%2Fresources%2Fdatatables-1.9.4%2Fmedia%2Funit_testing%2Ftests_onhold%2F4_server-side%2F2600.js;h=e20f3099acfbe16cef7f8e3d676511824aa8c0a4;hb=b24a507278fc81ae8e7642d5eeedc35e58697d7c;hp=0000000000000000000000000000000000000000;hpb=fd9caa94da7b40958c8f8baac6c9719bd11d9ddb;p=proteocache.git diff --git a/webapp/resources/datatables-1.9.4/media/unit_testing/tests_onhold/4_server-side/2600.js b/webapp/resources/datatables-1.9.4/media/unit_testing/tests_onhold/4_server-side/2600.js new file mode 100755 index 0000000..e20f309 --- /dev/null +++ b/webapp/resources/datatables-1.9.4/media/unit_testing/tests_onhold/4_server-side/2600.js @@ -0,0 +1,47 @@ +// DATA_TEMPLATE: empty_table +oTest.fnStart( "2600 - Display rewind when changing length" ); + +$(document).ready( function () { + $('#example').dataTable( { + "bServerSide": true, + "sAjaxSource": "../../../examples/server_side/scripts/server_processing.php" + } ); + + oTest.fnWaitTest( + "Info correct on init", + null, + function () { return $('#example_info').html() == "Showing 1 to 10 of 57 entries"; } + ); + + oTest.fnWaitTest( + "Page 2", + function () { $('#example_next').click(); }, + function () { return $('#example_info').html() == "Showing 11 to 20 of 57 entries"; } + ); + + oTest.fnWaitTest( + "Page 3", + function () { $('#example_next').click(); }, + function () { return $('#example_info').html() == "Showing 21 to 30 of 57 entries"; } + ); + + oTest.fnWaitTest( + "Page 4", + function () { $('#example_next').click(); }, + function () { return $('#example_info').html() == "Showing 31 to 40 of 57 entries"; } + ); + + oTest.fnWaitTest( + "Page 5", + function () { $('#example_next').click(); }, + function () { return $('#example_info').html() == "Showing 41 to 50 of 57 entries"; } + ); + + oTest.fnWaitTest( + "Rewind", + function () { $('#example_length select').val('100'); $('#example_length select').change(); }, + function () { return $('#example_info').html() == "Showing 1 to 57 of 57 entries"; } + ); + + oTest.fnComplete(); +} ); \ No newline at end of file