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

(-)a/admin/columns_settings.yml (+1 lines)
Lines 920-925 modules: Link Here
920
920
921
    checkouthistory:
921
    checkouthistory:
922
      checkouthistory-table:
922
      checkouthistory-table:
923
        default_display_length: 20
923
        columns:
924
        columns:
924
            - columnname: type
925
            - columnname: type
925
              cannot_be_toggled: 1
926
              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