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

(-)a/admin/columns_settings.yml (+1 lines)
Lines 906-911 modules: Link Here
906
906
907
    checkouthistory:
907
    checkouthistory:
908
      checkouthistory-table:
908
      checkouthistory-table:
909
        default_display_length: 20
909
        columns:
910
        columns:
910
            - columnname: type
911
            - columnname: type
911
              cannot_be_toggled: 1
912
              cannot_be_toggled: 1
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt (-3 / +2 lines)
Lines 150-160 Link Here
150
    [% INCLUDE 'columns_settings.inc' %]
150
    [% INCLUDE 'columns_settings.inc' %]
151
    <script id="js">
151
    <script id="js">
152
        $(document).ready(function() {
152
        $(document).ready(function() {
153
            var columns_settings = [% TablesSettings.GetColumns('members', 'checkouthistory', 'checkouthistory-table', 'json') %];
153
            var table_settings = [% TablesSettings.GetTableSettings('members', 'checkouthistory', 'checkouthistory-table', 'json') %];
154
            var table = KohaTable("table_readingrec", {
154
            var table = KohaTable("table_readingrec", {
155
                "sPaginationType": "full",
155
                "sPaginationType": "full",
156
                "aaSorting": [[10, 'desc']]
156
                "aaSorting": [[10, 'desc']]
157
            }, columns_settings);
157
            }, table_settings);
158
158
159
            var tabs = $("#tabs").tabs({
159
            var tabs = $("#tabs").tabs({
160
                activate: function(e, ui) {
160
                activate: function(e, ui) {
161
- 

Return to bug 29648