Bugzilla – Attachment 177253 Details for
Bug 38984
DataTables's columnDefs cleanup
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38984: Remove NoSort def
Bug-38984-Remove-NoSort-def.patch (text/plain), 22.80 KB, created by
Jonathan Druart
on 2025-01-28 11:01:07 UTC
(
hide
)
Description:
Bug 38984: Remove NoSort def
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2025-01-28 11:01:07 UTC
Size:
22.80 KB
patch
obsolete
>From 1b140cc5eb0bb99f1aefd87128c130f8f34ff130 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 28 Jan 2025 10:53:38 +0100 >Subject: [PATCH] Bug 38984: Remove NoSort def > >No need to pass it to the constructor as it's defined already in >datatables.js >--- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt | 2 -- > .../prog/en/modules/acqui/newordersubscription.tt | 1 - > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt | 3 --- > .../intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt | 1 - > .../prog/en/modules/admin/auth_subfields_structure.tt | 1 - > koha-tmpl/intranet-tmpl/prog/en/modules/admin/localization.tt | 1 - > koha-tmpl/intranet-tmpl/prog/en/modules/admin/oai_servers.tt | 1 - > koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 1 - > koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt | 1 - > .../prog/en/modules/circ/circulation_batch_checkouts.tt | 1 - > .../intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 3 --- > .../intranet-tmpl/prog/en/modules/clubs/patron-clubs-tab.tt | 1 - > koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt | 1 - > .../prog/en/modules/patron_lists/patron-lists-tab.tt | 1 - > .../prog/en/modules/reports/guided_reports_start.tt | 1 - > koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt | 3 --- > .../intranet-tmpl/prog/en/modules/serials/serials-search.tt | 3 --- > .../intranet-tmpl/prog/en/modules/tools/additional-contents.tt | 1 - > koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt | 1 - > .../intranet-tmpl/prog/en/modules/tools/problem-reports.tt | 1 - > koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js | 1 - > koha-tmpl/intranet-tmpl/prog/js/cart.js | 1 - > koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 1 - > koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js | 2 -- > koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js | 1 - > koha-tmpl/intranet-tmpl/prog/js/pages/stockrotation.js | 2 -- > koha-tmpl/intranet-tmpl/prog/js/pages/tags-review.js | 1 - > koha-tmpl/intranet-tmpl/prog/js/subscription-add.js | 1 - > koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt | 1 - > koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-topissues.tt | 1 - > 30 files changed, 41 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt >index 3845a8e180e..7f3388b4933 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt >@@ -411,7 +411,6 @@ > [% ELSE %] > grouped = $("#grouped").kohaTable({ > dom: "t", >- columnDefs: [{ orderable: false, targets: ["NoSort"] }], > autoWidth: false, > language: { > emptyTable: _("There are no baskets in this group"), >@@ -419,7 +418,6 @@ > }); > ungrouped = $("#ungrouped").kohaTable({ > dom: "t", >- columnDefs: [{ orderable: false, targets: ["NoSort"] }], > autoWidth: false, > language: { > emptyTable: _("There are no ungrouped baskets"), >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt >index 5c61515fec9..154c878228c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt >@@ -136,7 +136,6 @@ > $(document).ready(function() { > $("#srlt").kohaTable({ > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > pagingType: "full", >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt >index 5995fae3b6e..c53dac98d88 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt >@@ -691,9 +691,6 @@ > > $(document).ready(function() { > var contractst = $("#contractst").kohaTable({ >- columnDefs: [ >- { orderable: false, searchable: false, targets: [ 'NoSort' ] } >- ], > dom: 't' > } ); > $('body').on('click', '.delete-contact', null, delete_contact); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt >index 8415f0373c1..2f265c02dac 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt >@@ -184,7 +184,6 @@ > <script> > $(document).ready(function() { > var uncertainpricet = $("#uncertainpricet").kohaTable({ >- columnDefs: [{ orderable: false, searchable: false, targets: ["NoSort"] }], > pagingType: "full", > }); > $(".check_uncertain").on("change",function(){ >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt >index 918b41ba78b..56d6101d8fa 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt >@@ -412,7 +412,6 @@ > <script> > $(document).ready(function() { > $("#table_authsubfieldstructure").kohaTable({ >- columnDefs: [{ orderable: false, targets: ["NoSort"] }], > aaSorting: [], > paginate: false, > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/localization.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/localization.tt >index bdd51a07367..f6750aa8607 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/localization.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/localization.tt >@@ -186,7 +186,6 @@ > > var table = $("#localization").kohaTable({ > dom: "t", >- columnDefs: [{ orderable: false, targets: ["NoSort"] }], > paginate: false, > autoWidth: false, > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/oai_servers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/oai_servers.tt >index 8cc9ea62fe0..30d1296f7ff 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/oai_servers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/oai_servers.tt >@@ -222,7 +222,6 @@ > [% ELSE %] > $(document).ready(function() { > $("#serverst").kohaTable({ >- columnDefs: [{ orderable: false, targets: ["NoSort"] }], > pagingType: "full", > }); > $(".delete").on("click",function(e){ >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >index 976121a40b7..fdaf8b1f234 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >@@ -2036,7 +2036,6 @@ > [% IF suggestions.count %] > $("#suggestions").kohaTable({ > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > pagingType: "full", >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt >index b79e67362ee..e21e02f3539 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt >@@ -145,7 +145,6 @@ > $("#notestable").kohaTable({ > order: [[1, "asc"]], > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > pagingType: "full", >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt >index 2f3238e43c6..082ecb59735 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt >@@ -367,7 +367,6 @@ > dom: "t", > order: [], > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > paginate: false, >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >index 29ef396f3bf..b6d8a055bed 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt >@@ -332,9 +332,6 @@ > var holdst = $("#holdst").kohaTable( > { > pagingType: "full_numbers", >- columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, >- ], > }, > table_settings, > true, >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-clubs-tab.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-clubs-tab.tt >index eee6e66df59..19096c599d6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-clubs-tab.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-clubs-tab.tt >@@ -68,7 +68,6 @@ > > <script> > var clubs_dt_params = { >- columnDefs: [{ orderable: false, targets: ["NoSort"] }], > paginate: true, > }; > $("#table_clubnoenrollmemnts").kohaTable(clubs_dt_params); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt >index bb0eba04737..742e590fb4a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt >@@ -158,7 +158,6 @@ > > $("#patron-lists-table").kohaTable({ > autoWidth: false, >- columnDefs: [{ orderable: false, searchable: false, targets: ["NoSort"] }], > pagingType: "full", > }); > $(".delete_patron").on("click", function(){ >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/patron-lists-tab.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/patron-lists-tab.tt >index 2369be6b1b3..bb73712a81f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/patron-lists-tab.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/patron-lists-tab.tt >@@ -105,7 +105,6 @@ > > <script> > var patron_lists_dt_params = { >- columnDefs: [{ orderable: false, bSearchable: false, targets: ["NoSort"] }], > sPaginationType: "full", > }; > $("#table_listnopatron").kohaTable(patron_lists_dt_params); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >index 03810e3d3a1..4af9f28b808 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >@@ -2412,7 +2412,6 @@ > { "width": "35%", "targets": 1 } > ], > "columnDefs": [ >- { "orderable": false, "searchable": false, "targets": [ 'NoSort' ] }, > { "type": "anti-the", "targets": [ 'anti-the'] } > ] > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt >index 7c4e5b8f73c..71def9aad65 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt >@@ -218,9 +218,6 @@ > var lostitems_table = $("#lostitems-table").kohaTable( > { > order: [], >- columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, >- ], > autoWidth: false, > paginate: false, > }, >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt >index 452493410c1..a40a73aaca7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt >@@ -349,7 +349,6 @@ > pagingType: "full", > order: [[2, "asc"]], > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > }); >@@ -359,7 +358,6 @@ > order: [[2, "asc"]], > pagingType: "full", > columnDefs: [ >- { orderable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > }); >@@ -367,7 +365,6 @@ > var manarlt = $("#mana_results_datatable").kohaTable({ > pagingType: "full", > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt >index 8ec41db0d57..26889340716 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt >@@ -606,7 +606,6 @@ > var table = $("#table_additional_contents").kohaTable({ > order: [[4, "desc"]], > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > pagingType: "full_numbers", >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt >index 0b63f1f97e3..c01f529c3b6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt >@@ -192,7 +192,6 @@ > $("#rulestabs a:first").tab("show"); > } > $(".overduerulest").kohaTable({ >- columnDefs: [{ targets: ["NoSort"], orderable: false, searchable: false }], > dom: '<"top pager"f>rt<"clear">', > paginate: false, > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt >index 9573602744f..d68b7878816 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt >@@ -151,7 +151,6 @@ > $("#problemreportstable").kohaTable({ > order: [[1, "asc"]], > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > pagingType: "full", >diff --git a/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js b/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js >index 85fc74092eb..f6dc60bc369 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js >@@ -4,7 +4,6 @@ $(document).ready(function() { > $("#Aform").preventDoubleFormSubmit(); > $("#files").kohaTable({ > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > pagingType: "full", >diff --git a/koha-tmpl/intranet-tmpl/prog/js/cart.js b/koha-tmpl/intranet-tmpl/prog/js/cart.js >index b2dc940cd59..559935aafff 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/cart.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/cart.js >@@ -86,7 +86,6 @@ $(document).ready(function(){ > $("#itemst").kohaTable({ > dom: "t", > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > { type: "callnumbers", targets: ["callnumbers"] }, > ], >diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >index c96d189fc34..c62d40deb1a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >@@ -1032,7 +1032,6 @@ $(document).ready(function() { > "dom": "rt", > "order": [], > "columnDefs": [ >- { "orderable": false, "searchable": false, "targets": ['NoSort'] }, > { "type": "anti-the", "targets": ["anti-the"] }, > ], > "columns": [ >diff --git a/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js b/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js >index 2a7fb63b445..3c76c9d639d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js >@@ -38,7 +38,6 @@ function tableInit( oldtabid, newtabid ) { > } > > $("#" + newtabid + "_table").kohaTable({ >- columnDefs: [{ orderable: false, searchable: false, targets: ["NoSort"] }], > paging: false, > autoWidth: false, > }); >@@ -110,7 +109,6 @@ $(document).ready(function () { > $("#facet_biblios_table").DataTable( > $.extend(true, {}, dataTablesDefaults, { > "columnDefs": [ >- { "orderable": false, "targets": [ "NoSort" ] }, > { "searchable": false, "visible": false, "targets": 0 } > ], > "dom": "t", >diff --git a/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js b/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js >index df738c1e72b..37b1364140f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js >@@ -30,7 +30,6 @@ $(document).ready(function() { > populateHiddenCheckboxes($(this).attr('id').split('-')[1]); > }); > $("#table_marcsubfieldstructure").kohaTable({ >- columnDefs: [{ sortable: false, targets: ["NoSort"] }], > order: [], > paginate: false, > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/js/pages/stockrotation.js b/koha-tmpl/intranet-tmpl/prog/js/pages/stockrotation.js >index 43da170172e..f01c0f04c08 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/pages/stockrotation.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/pages/stockrotation.js >@@ -70,7 +70,6 @@ $(document).ready(function() { > $("#stock_rotation_manage_items").kohaTable( > { > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > pagingType: "full", >@@ -82,7 +81,6 @@ $(document).ready(function() { > $("#stock_rotation").kohaTable( > { > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > pagingType: "full", >diff --git a/koha-tmpl/intranet-tmpl/prog/js/pages/tags-review.js b/koha-tmpl/intranet-tmpl/prog/js/pages/tags-review.js >index 94f26ede746..d32f50320b6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/pages/tags-review.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/pages/tags-review.js >@@ -60,7 +60,6 @@ var success_test_call = function() { > $(document).ready(function() { > $("#tagst").kohaTable({ > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > ], > order: [[2, "desc"]], >diff --git a/koha-tmpl/intranet-tmpl/prog/js/subscription-add.js b/koha-tmpl/intranet-tmpl/prog/js/subscription-add.js >index ea45704cb5b..50cd26a6071 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/subscription-add.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/subscription-add.js >@@ -438,7 +438,6 @@ function mana_search() { > { "width": "35%", "targets": 1 } > ], > "columnDefs": [ >- { "orderable": false, "searchable": false, "targets": [ 'NoSort' ] }, > { "type": "anti-the", "targets": [ 'anti-the'] } > ] > }); >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt >index 618fdf86864..8fd3cc799ac 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt >@@ -113,7 +113,6 @@ function cancelEnrollment( id ) { > details: { type: "column", target: -1 }, > }, > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { className: "dtr-control", orderable: false, targets: -1 }, > ], > }); >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-topissues.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-topissues.tt >index 9b0d75ff90b..f6b250c7620 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-topissues.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-topissues.tt >@@ -148,7 +148,6 @@ > $("#topissuest").kohaTable({ > sorting: [[3, "desc"]], > columnDefs: [ >- { orderable: false, searchable: false, targets: ["NoSort"] }, > { type: "anti-the", targets: ["anti-the"] }, > { className: "dtr-control", orderable: false, targets: -1 }, > ], >-- >2.34.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38984
:
177253
|
177254
|
177255
|
177256
|
177257
|
177258
|
177259
|
177278
|
177279
|
177280
|
177281
|
177597
|
177598
|
177641
|
177642
|
177643
|
177644
|
177645
|
177646
|
177647
|
177648
|
177649
|
177651
|
177933
|
177934
|
177935
|
177936
|
177937
|
177938
|
177939
|
177940
|
177941
|
177942
|
179057
|
179058
|
179059
|
179060
|
179061
|
179062
|
179063
|
179064
|
179065
|
179066