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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-15 / +28 lines)
Lines 42-47 $(document).ready(function() { Link Here
42
            $(':radio', this).attr('checked', 'true')
42
            $(':radio', this).attr('checked', 'true')
43
        }
43
        }
44
    });
44
    });
45
    var my_table = $("#requestspecific").dataTable($.extend(true, {}, dataTablesDefaults, {
46
        'bPaginate': false,
47
        'bInfo': false,
48
        "bAutoWidth": false,
49
    }));
50
51
    //Override fieldset styling for dataTables search box
52
    $("div.top.pager").css("margin-left","1em");
53
    $(".dataTables_filter label").css({
54
        "width":"auto",
55
        "margin-right":"0em"
56
    });
45
57
46
});
58
});
47
59
Lines 431-451 function checkMultiHold() { Link Here
431
443
432
        <table id="requestspecific">
444
        <table id="requestspecific">
433
        <caption>Place a hold on a specific item</caption>
445
        <caption>Place a hold on a specific item</caption>
446
            <thead>
434
		<tr>
447
		<tr>
435
            <th>Hold</th>
448
                    <th>Hold</th>
436
            [% IF ( item_level_itypes ) %]
449
                [% IF ( item_level_itypes ) %]
437
                <th>Item type</th>
450
                    <th>Item type</th>
438
            [% END %]
451
                [% END %]
439
            <th>Barcode</th>
452
                <th>Barcode</th>
440
            <th>Home library</th>
453
                <th>Home library</th>
441
            <th>Last location</th>
454
                <th>Last location</th>
442
            <th>Call no.</th>
455
                <th>Call no.</th>
443
            <th>Copy number</th>
456
                <th>Copy number</th>
444
            [% IF itemdata_enumchron %]
457
                [% IF itemdata_enumchron %]
445
            <th>Vol no.</th>
458
                <th>Vol no.</th>
446
            [% END %]
459
                [% END %]
447
            <th>Information</th>
460
                <th>Information</th>
448
        </tr>
461
                </tr>
462
            </thead>
449
    [% FOREACH itemloo IN bibitemloo.itemloop %]
463
    [% FOREACH itemloo IN bibitemloo.itemloop %]
450
        [% UNLESS ( itemloo.hide ) %]
464
        [% UNLESS ( itemloo.hide ) %]
451
        <tr class="[% itemloo.backgroundcolor %]">
465
        <tr class="[% itemloo.backgroundcolor %]">
452
- 

Return to bug 13887