1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
describe('columns.type option', function() {
dt.libs({
js: ['jquery', 'datatables'],
css: ['datatables']
});
let table;
function checkCols(expected) {
cols = table.settings().context[0].aoColumns;
for (i = 0; i < 6; i++) {
expect(cols[i].sType).toBe(expected[i]);
}
}
describe('Check the defaults', function() {
dt.html('basic');
it('Check defaults', function() {
table = $('#example').DataTable();
checkCols(['string', 'string', 'string', 'num', 'date', 'num-fmt']);
});
dt.html('basic');
it('Change with columnDefs', function() {
table = $('#example').DataTable({
columnDefs: [{ type: 'html', targets: [0, 2] }]
});
checkCols(['html', 'string', 'html', 'num', 'date', 'num-fmt']);
});
dt.html('basic');
it('Change with columns', function() {
table = $('#example').DataTable({
columns: [{ type: 'html' }, null, null, null, null, null]
});
checkCols(['html', 'string', 'string', 'num', 'date', 'num-fmt']);
});
dt.html('basic');
it('Add a html tag into a column', function() {
$('#example tbody tr:first').before(
'<tr><td><span>AAA</span></td><td>111</td><td>BBB<td><span>321</span></td><td>Date</td><td>$9,876</td>/tr>'
);
table = $('#example').DataTable();
checkCols(['html', 'string', 'string', 'html-num', 'string', 'num-fmt']);
});
});
});
|