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

(-)a/admin/columns_settings.yml (+1 lines)
Lines 948-953 modules: Link Here
948
948
949
    checkouthistory:
949
    checkouthistory:
950
      checkouthistory-table:
950
      checkouthistory-table:
951
        default_display_length: 20
951
        columns:
952
        columns:
952
            - columnname: type
953
            - columnname: type
953
              cannot_be_toggled: 1
954
              cannot_be_toggled: 1
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt (-3 / +2 lines)
Lines 156-166 Link Here
156
    [% INCLUDE 'columns_settings.inc' %]
156
    [% INCLUDE 'columns_settings.inc' %]
157
    <script id="js">
157
    <script id="js">
158
        $(document).ready(function() {
158
        $(document).ready(function() {
159
            var columns_settings = [% TablesSettings.GetColumns('members', 'checkouthistory', 'checkouthistory-table', 'json') %];
159
            var table_settings = [% TablesSettings.GetTableSettings('members', 'checkouthistory', 'checkouthistory-table', 'json') %];
160
            var table = KohaTable("table_readingrec", {
160
            var table = KohaTable("table_readingrec", {
161
                "sPaginationType": "full",
161
                "sPaginationType": "full",
162
                "aaSorting": [[10, 'desc']]
162
                "aaSorting": [[10, 'desc']]
163
            }, columns_settings);
163
            }, table_settings);
164
164
165
            $("#tabs a[data-toggle='tab']").on("shown.bs.tab", function (e) {
165
            $("#tabs a[data-toggle='tab']").on("shown.bs.tab", function (e) {
166
                active_tab = $(this).data("tabname");
166
                active_tab = $(this).data("tabname");
167
- 

Return to bug 29648