From 2f5d8e492dcc499effebad510a9b3e9f43b1526e Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 13 Dec 2019 23:42:28 +0000 Subject: [PATCH] Bug 10469: Display more when editing subfields in frameworks This patch removes the accordion feature from the MARC subfields structure editor. The form is not long, and I think in this case the accordion makes the process more difficult to navigate. To test, apply the patch and go to Administration -> MARC frameworks -> Framework structure -> Subfield structure -> Edit. Choose a tag with multiple subfields to best test the changes. The whole form should apppear, and tabs functionality should work correctly. Test that making changes under multiple tabs works correctly. --- .../prog/en/modules/admin/marc_subfields_structure.tt | 14 ++++++++------ .../intranet-tmpl/prog/js/marc_subfields_structure.js | 1 - 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt index f4d0fefcec..09991e99f2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt @@ -5,6 +5,7 @@ Koha › Administration ›[% IF ( add_form ) %][% IF ( use_heading_flags_p ) %][% IF ( heading_edit_subfields_p ) %] MARC subfield structure › Edit MARC subfields constraints[% END %][% ELSE %] MARC subfield structure › [% action | html %][% END %][% END %] [% IF ( delete_confirm ) %] MARC subfield structure › Confirm deletion of subfield [% tagsubfield | html %][% END %][% IF ( delete_confirmed ) %] MARC subfield structure › Subfield deleted[% END %][% IF ( else ) %]MARC subfield structure[% END %] [% INCLUDE 'doc-head-close.inc' %] + @@ -60,9 +61,9 @@ [% FOREACH loo IN loop %]
-

Basic constraints

-
+
+ Basic constraints
    [% IF ( subfieldcode == 0 || subfieldcode ) %]
  1. Subfield code: [% loo.subfieldcode | html %]
  2. @@ -114,9 +115,9 @@
-

Advanced constraints

-
+
+ Advanced constraints
  1. (see online help)
  2. @@ -161,9 +162,10 @@
-

Other options (choose one)

-
+ +
+ Other options (choose one)
  1. 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 197c04ce32..1f1cc909e1 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js +++ b/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js @@ -1,5 +1,4 @@ $(document).ready(function() { - $( ".constraints" ).accordion(); $('#subfieldtabs').tabs(); $("input[id^='hidden_']").click(setHiddenValue); $("input[id^='hidden-']").each(function() { -- 2.11.0