2010-08-18 00:03:17 +02:00
|
|
|
// DATA_TEMPLATE: -complex_header
|
|
|
|
oTest.fnStart( "Complex header" );
|
|
|
|
|
|
|
|
|
|
|
|
$(document).ready( function () {
|
|
|
|
$('#example').dataTable();
|
|
|
|
|
|
|
|
oTest.fnTest(
|
|
|
|
"Sorting on colspan has no effect",
|
|
|
|
function () { $('#example thead th:eq(1)').click(); },
|
|
|
|
function () { return $('#example tbody tr td:eq(1)').html() == "Firefox 1.0"; }
|
|
|
|
);
|
|
|
|
|
|
|
|
oTest.fnTest(
|
|
|
|
"Sorting on non-unique TH and first TH has no effect",
|
|
|
|
function () { $('#example thead th:eq(2)').click(); },
|
|
|
|
function () { return $('#example tbody tr td:eq(1)').html() == "Firefox 1.0"; }
|
|
|
|
);
|
|
|
|
|
|
|
|
oTest.fnTest(
|
2010-11-17 09:25:54 +01:00
|
|
|
"Sorting on non-unique TH and second TH will not sort",
|
2010-08-18 00:03:17 +02:00
|
|
|
function () { $('#example thead th:eq(6)').click(); },
|
|
|
|
function () { return $('#example tbody tr td:eq(4)').html() == "A"; }
|
|
|
|
);
|
|
|
|
|
|
|
|
oTest.fnTest(
|
2010-11-17 09:25:54 +01:00
|
|
|
"Sorting on non-unique TH and second TH will not sort - reserve",
|
2010-08-18 00:03:17 +02:00
|
|
|
function () { $('#example thead th:eq(6)').click(); },
|
2010-11-17 09:25:54 +01:00
|
|
|
function () { return $('#example tbody tr td:eq(4)').html() == "A"; }
|
2010-08-18 00:03:17 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
oTest.fnTest(
|
|
|
|
"Sorting on unique TH will sort",
|
|
|
|
function () { $('#example thead th:eq(5)').click(); },
|
|
|
|
function () { return $('#example tbody tr td:eq(3)').html() == "-"; }
|
|
|
|
);
|
|
|
|
|
|
|
|
oTest.fnTest(
|
|
|
|
"Sorting on unique TH will sort - reserve",
|
|
|
|
function () { $('#example thead th:eq(5)').click(); },
|
|
|
|
function () { return $('#example tbody tr td:eq(3)').html() == "522.1"; }
|
|
|
|
);
|
|
|
|
|
|
|
|
oTest.fnTest(
|
|
|
|
"Sorting on unique rowspan TH will sort",
|
|
|
|
function () { $('#example thead th:eq(0)').click(); },
|
|
|
|
function () { return $('#example tbody tr td:eq(0)').html() == "Gecko"; }
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
oTest.fnComplete();
|
|
|
|
} );
|