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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt (-3 / +2 lines)
Lines 211-217 Link Here
211
    [% Asset.js("js/table_filters.js") | $raw %]
211
    [% Asset.js("js/table_filters.js") | $raw %]
212
    <script>
212
    <script>
213
        $(document).ready(function() {
213
        $(document).ready(function() {
214
            var columns_settings = [% TablesSettings.GetColumns( 'reports', 'lostitems', 'lostitems-table', 'json' ) | $raw %];
214
            var table_settings = [% TablesSettings.GetTableSettings( 'reports', 'lostitems', 'lostitems-table', 'json' ) | $raw %];
215
            var lostitems_table = KohaTable("lostitems-table", {
215
            var lostitems_table = KohaTable("lostitems-table", {
216
                "aaSorting": [],
216
                "aaSorting": [],
217
                "aoColumnDefs": [
217
                "aoColumnDefs": [
Lines 219-225 Link Here
219
                ],
219
                ],
220
                'bAutoWidth': false,
220
                'bAutoWidth': false,
221
                "bPaginate": false,
221
                "bPaginate": false,
222
            }, columns_settings, 'with_filters');
222
            }, table_settings, 'with_filters');
223
223
224
            function itemSelectionBuildExportLink() {
224
            function itemSelectionBuildExportLink() {
225
                var itemnumbers = new Array();
225
                var itemnumbers = new Array();
226
- 

Return to bug 29648