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

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js (-2 / +4 lines)
Lines 374-380 $(document).ready(function() { Link Here
374
                    "bVisible": exports_enabled ? true : false,
374
                    "bVisible": exports_enabled ? true : false,
375
                    "bSortable": false,
375
                    "bSortable": false,
376
                    "mDataProp": function ( oObj ) {
376
                    "mDataProp": function ( oObj ) {
377
                        return "<input type='checkbox' class='export' id='export_" + oObj.biblionumber + "' name='biblionumbers' value='" + oObj.biblionumber + "' />";
377
                        var s = "<input type='checkbox' name='itemnumbers' value='" + oObj.itemnumber + "' style='visibility:hidden;' />";
378
379
                        s += "<input type='checkbox' class='export' id='export_" + oObj.biblionumber + "' name='biblionumbers' value='" + oObj.biblionumber + "' />";
380
                        return s;
378
                    }
381
                    }
379
                }
382
                }
380
            ],
383
            ],
381
- 

Return to bug 14710