View | Details | Raw Unified | Return to bug 18791
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc (-1 / +15 lines)
Lines 25-46 function KohaTable(id_selector, dt_parameters, columns_settings, add_filters) { Link Here
25
            extend: 'colvis',
25
            extend: 'colvis',
26
            columns: included_ids,
26
            columns: included_ids,
27
            text: _("Column visibility"),
27
            text: _("Column visibility"),
28
            exportOptions: {
29
                columns: ':visible'
30
            },
28
        },
31
        },
29
        {
32
        {
30
            extend: 'excelHtml5',
33
            extend: 'excelHtml5',
31
            text: _("Excel"),
34
            text: _("Excel"),
35
            exportOptions: {
36
                columns: ':visible'
37
            },
32
        },
38
        },
33
        {
39
        {
34
            extend: 'csvHtml5',
40
            extend: 'csvHtml5',
35
            text: _("CSV"),
41
            text: _("CSV"),
42
            exportOptions: {
43
                columns: ':visible'
44
            },
36
        },
45
        },
37
        {
46
        {
38
            extend: 'copyHtml5',
47
            extend: 'copyHtml5',
39
            text: _("Copy"),
48
            text: _("Copy"),
49
            exportOptions: {
50
                columns: ':visible'
51
            },
40
        },
52
        },
41
        {
53
        {
42
            extend: 'print',
54
            extend: 'print',
43
            text: _("Print"),
55
            text: _("Print"),
56
            exportOptions: {
57
                columns: ':visible'
58
            },
44
        },
59
        },
45
    ];
60
    ];
46
61
47
- 

Return to bug 18791