Lines 311-320
function _dt_visibility(table_settings, table_dt){
Link Here
|
311 |
} |
311 |
} |
312 |
|
312 |
|
313 |
var default_column_defs = [ |
313 |
var default_column_defs = [ |
314 |
{ "aTargets": ["string-sort"], "sType": "string" }, |
314 |
{ "targets": ["string-sort"], "type": "string" }, |
315 |
{ "aTargets": ["anti-the"], "sType": "anti-the" }, |
315 |
{ "targets": ["anti-the"], "type": "anti-the" }, |
316 |
{ "aTargets": ["NoSort"], "bSortable": false, "bSearchable": false } |
316 |
{ "targets": ["NoSort"], "orderable": false, "searchable": false } |
317 |
]; |
317 |
]; |
|
|
318 |
if (settings["columnDefs"] === undefined) { |
319 |
settings["columnDefs"] = default_column_defs; |
320 |
} else { |
321 |
settings["columnDefs"] = settings["columnDefs"].concat(default_column_defs); |
322 |
} |
318 |
|
323 |
|
319 |
$(this).data('bKohaColumnsUseNames', settings.bKohaColumnsUseNames); |
324 |
$(this).data('bKohaColumnsUseNames', settings.bKohaColumnsUseNames); |
320 |
var table = $(this).dataTable(settings); |
325 |
var table = $(this).dataTable(settings); |
321 |
- |
|
|