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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt (-2 / +2 lines)
Lines 145-152 Link Here
145
                                    <th>Code</th>
145
                                    <th>Code</th>
146
                                    <th>Name</th>
146
                                    <th>Name</th>
147
                                    <th class="title-string">Last updated</th>
147
                                    <th class="title-string">Last updated</th>
148
                                    <th class="nosort">Copy notice</th>
148
                                    <th class="NoSort noExport">Copy notice</th>
149
                                    <th class="nosort noExport">Actions</th>
149
                                    <th class="NoSort noExport">Actions</th>
150
                                </tr>
150
                                </tr>
151
                            </thead>
151
                            </thead>
152
                            <tbody>
152
                            <tbody>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt (-7 / +4 lines)
Lines 1-6 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Asset %]
2
[% USE Asset %]
3
[% USE Koha %]
3
[% USE Koha %]
4
[% USE TablesSettings %]
4
[% SET footerjs = 1 %]
5
[% SET footerjs = 1 %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
[% IF plugin %]
7
[% IF plugin %]
Lines 159-165 Link Here
159
        <th>Category</th>
160
        <th>Category</th>
160
        [% IF !plugin %]<th>Public</th>[% END %]
161
        [% IF !plugin %]<th>Public</th>[% END %]
161
        [% IF !plugin %]<th>Temporary</th>[% END %]
162
        [% IF !plugin %]<th>Temporary</th>[% END %]
162
        <th class="nosort noExport">Actions</th>
163
        <th class="NoSort noExport">Actions</th>
163
    </tr>
164
    </tr>
164
    </thead>
165
    </thead>
165
    <tbody>
166
    <tbody>
Lines 256-261 Link Here
256
    [% Asset.js("js/tools-menu.js") | $raw %]
257
    [% Asset.js("js/tools-menu.js") | $raw %]
257
    [% INCLUDE 'datatables.inc' %]
258
    [% INCLUDE 'datatables.inc' %]
258
    [% Asset.js("js/file-upload.js") | $raw %]
259
    [% Asset.js("js/file-upload.js") | $raw %]
260
    [% INCLUDE 'columns_settings.inc' %]
259
    <script>
261
    <script>
260
        function StartUpload() {
262
        function StartUpload() {
261
            if( $('#fileToUpload').prop('files').length == 0 ) return;
263
            if( $('#fileToUpload').prop('files').length == 0 ) return;
Lines 382-393 Link Here
382
            window.close();
384
            window.close();
383
        }
385
        }
384
        $(document).ready(function() {
386
        $(document).ready(function() {
385
            $("#uploadresults").dataTable($.extend(true, {}, dataTablesDefaults, {
387
            KohaTable("uploadresults",{});
386
                "aoColumnDefs": [
387
                    { 'bSortable': false, 'aTargets': [ 'nosort' ] }
388
                ],
389
                "sPaginationType": "full"
390
            }));
391
            [% IF msg %]
388
            [% IF msg %]
392
                ShowAlerts( [% msg | html %] );
389
                ShowAlerts( [% msg | html %] );
393
            [% END %]
390
            [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/js/letter.js (-6 lines)
Lines 45-55 $(document).ready(function() { Link Here
45
        "autoWidth": false,
45
        "autoWidth": false,
46
        "paging": false,
46
        "paging": false,
47
        "aaSorting": [[ 3, "asc" ]],
47
        "aaSorting": [[ 3, "asc" ]],
48
        "columnDefs": [
49
            { "bSortable": false, "aTargets": [ "nosort" ] },
50
            { "sType": "title-string", "aTargets" : [ "title-string"] }
51
        ],
52
        "exportColumns": [0,1,2,3],
53
    }, columns_settings);
48
    }, columns_settings);
54
49
55
    if( no_op_set ){
50
    if( no_op_set ){
56
- 

Return to bug 26602