Sha256: bb8be0cf86d1f9a90986a9d6ae24ea48c8191f1f8557066c11855daf3d9ef0a3
Contents?: true
Size: 1.62 KB
Versions: 28
Compression:
Stored size: 1.62 KB
Contents
// DATA_TEMPLATE: js_data oTest.fnStart( "aaSortingFixed" ); $(document).ready( function () { /* Check the default */ var oTable = $('#example').dataTable( { "aaData": gaaData } ); var oSettings = oTable.fnSettings(); oTest.fnTest( "No fixed sorting by default", null, function () { return oSettings.aaSortingFixed == null; } ); oTest.fnTest( "Fixed sorting on first column (string/asc) with user sorting on second column (string/asc)", function () { oSession.fnRestore(); $('#example').dataTable( { "aaData": gaaData, "aaSortingFixed": [['0','asc']] } ); $('#example thead th:eq(1)').click(); }, function () { return $('#example tbody td:eq(1)').html() == "Camino 1.0"; } ); oTest.fnTest( "Fixed sorting on first column (string/asc) with user sorting on second column (string/desc)", function () { $('#example thead th:eq(1)').click(); }, function () { return $('#example tbody td:eq(1)').html() == "Seamonkey 1.1"; } ); oTest.fnTest( "Fixed sorting on fourth column (int/asc) with user sorting on second column (string/asc)", function () { oSession.fnRestore(); $('#example').dataTable( { "aaData": gaaData, "aaSortingFixed": [['3','asc']] } ); $('#example thead th:eq(1)').click(); }, function () { return $('#example tbody td:eq(1)').html() == "All others"; } ); oTest.fnTest( "Fixed sorting on fourth column (int/asc) with user sorting on second column (string/desc)", function () { $('#example thead th:eq(1)').click(); }, function () { return $('#example tbody td:eq(1)').html() == "PSP browser"; } ); oTest.fnComplete(); } );
Version data entries
28 entries across 28 versions & 1 rubygems