Bugzilla – Attachment 178727 Details for
Bug 39099
Use select2 to select library limitations in item types, patron categories, and authorized values
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39099: Use select2 to select library limitations in item types, patron categories, and authorized values
Bug-39099-Use-select2-to-select-library-limitation.patch (text/plain), 9.34 KB, created by
Owen Leonard
on 2025-02-26 15:11:33 UTC
(
hide
)
Description:
Bug 39099: Use select2 to select library limitations in item types, patron categories, and authorized values
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2025-02-26 15:11:33 UTC
Size:
9.34 KB
patch
obsolete
>From 470caadde6a3e0813eaf4d002a33e062a1b3906f Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Tue, 18 Feb 2025 14:05:31 +0000 >Subject: [PATCH] Bug 39099: Use select2 to select library limitations in item > types, patron categories, and authorized values >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >This patch updates some administration templates so that library >selection uses a Select2-styled menu instead of a standard <select>. >Item types, patron categories, and authorized values all offer a >"library limitation" option, and Select2 will make library selection >behave like item search options do. > >To test, apply the patch and rebuild the staff interface CSS. > >- Go to Administration -> Item types and edit an item type. >- On the "Library limitation" line, click the field to trigger the > Select2 menu. Confirm that it works as expected. >- Save your changes to confirm that the data is saved correctly. >- Edit the item type again to clear all your selections and confirm that > it saves correctly. >- Repeat the same process on the authorized values page and the patron > categories page. > >Sponsored-by: Athens County Public Libraries >Signed-off-by: Janne Seppänen <janne.seppanen@lahti.fi> >--- > koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss | 15 ++++++++++++--- > .../prog/en/modules/admin/authorised_values.tt | 10 ++++++---- > .../prog/en/modules/admin/categories.tt | 8 ++++---- > .../prog/en/modules/admin/itemtypes.tt | 10 ++++++---- > koha-tmpl/intranet-tmpl/prog/js/categories.js | 5 ++--- > 5 files changed, 30 insertions(+), 18 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss >index ce631535eec..1991ebd5f9a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss >+++ b/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss >@@ -176,16 +176,25 @@ fieldset { > div.ms-drop { > label { > text-align: left; >- width:auto; >- span{ >+ width: auto; >+ >+ span { > margin-left:5px; > width:auto; > } > } > > ul>li.hide-radio.selected { >- color: initial; > background-color: initial; >+ color: initial; >+ } >+ } >+ >+ .select2 { >+ li { >+ clear: none; >+ display: inline-block; >+ width: unset; > } > } > } >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt >index 519476a6f3d..3d0d3504a07 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt >@@ -196,9 +196,8 @@ > <input type="text" name="lib_opac" id="lib_opac" value="[% av.lib_opac | html %]" maxlength="200" /> > </li> > <li >- ><label for="branches">Library limitations: </label> >- <select id="branches" name="branches" multiple size="10"> >- <option value="">All libraries</option> >+ ><label for="library_limitation">Library limitations: </label> >+ <select id="library_limitation" name="branches" multiple size="10"> > [% FOREACH branch IN branches_loop %] > [% IF ( branch.selected ) %] > <option selected="selected" value="[% branch.branchcode | html %]">[% branch.branchname | html %]</option> >@@ -207,7 +206,7 @@ > [% END %] > [% END %] > </select> >- <div class="hint">Select 'All libraries' if this authorized value must be displayed all the time. Otherwise select libraries you want to associate with this value.</div> >+ <div class="hint">Select libraries you want to associate with this value.</div> > </li> > </ol> > >@@ -403,6 +402,7 @@ > [% MACRO jsinclude BLOCK %] > [% Asset.js("js/admin-menu.js") | $raw %] > [% INCLUDE 'datatables.inc' %] >+ [% INCLUDE 'select2.inc' %] > <script> > $(document).ready(function () { > $("#categoriest").kohaTable({ >@@ -439,6 +439,8 @@ > } > return true; > }); >+ $("#library_limitation")[0].style.minWidth = "450px"; >+ $("#library_limitation").select2(); > }); > </script> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt >index 74557724486..040c899fe5e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt >@@ -234,12 +234,11 @@ > </select> > </li> > <li >- ><label for="branches">Library limitations: </label> >- <select id="branches" name="branches" multiple size="10"> >- <option value="">All libraries</option> >+ ><label for="library_limitation">Library limitations: </label> >+ <select id="library_limitation" name="branches" multiple size="10"> > [% PROCESS options_for_libraries libraries => Branches.all( selected => category.get_library_limits, unfiltered => 1, do_not_select_my_library => 1 ) %] > </select> >- <div class="hint">Select <em>All libraries</em> if this category type must to be displayed all the time. Otherwise select libraries you want to associate with this value. </div> >+ <div class="hint">Select libraries you want to associate with this value.</div> > </li> > <li> > <label for="reset_password">Password reset in OPAC: </label> >@@ -867,6 +866,7 @@ > [% Asset.js("lib/jquery/plugins/multiple-select/multiple-select.min.js") | $raw %] > [% INCLUDE 'calendar.inc' %] > [% INCLUDE 'datatables.inc' %] >+ [% INCLUDE 'select2.inc' %] > <script> > var table_settings = [% TablesSettings.GetTableSettings( 'admin', 'categories', 'patron_categories', 'json' ) | $raw %]; > </script> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt >index 15550f97b2e..1ba58e03b25 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt >@@ -345,12 +345,11 @@ > </select> > </li> > <li >- ><label for="branches">Library limitation: </label> >- <select id="branches" name="branches" multiple size="10"> >- <option value="">All libraries</option> >+ ><label for="library_limitation">Library limitation: </label> >+ <select id="library_limitation" name="branches" multiple size="10"> > [% PROCESS options_for_libraries libraries => Branches.all( selected => itemtype.get_library_limits, unfiltered => 1, do_not_select_my_library => 1 ) %] > </select> >- <div class="hint">Select 'All libraries' if all libraries use this item type. Otherwise, select the specific libraries that use this item type.</div> >+ <div class="hint">Select libraries you want to associate with this item type.</div> > </li> > <li> > <label for="summary">Summary: </label> >@@ -535,6 +534,7 @@ > [% Asset.js("js/admin-menu.js") | $raw %] > [% INCLUDE 'greybox.inc' %] > [% INCLUDE 'datatables.inc' %] >+ [% INCLUDE 'select2.inc' %] > <script> > $(document).ready(function() { > var table_settings = [% TablesSettings.GetTableSettings( 'admin', 'itemtypes', 'table_item_type', 'json' ) | $raw %]; >@@ -567,6 +567,8 @@ > if( $("#icons .tab-pane.active").length < 1 ){ > $("#icons a:first").tab("show"); > } >+ $("#library_limitation")[0].style.minWidth = '450px'; >+ $("#library_limitation").select2(); > }); > </script> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/js/categories.js b/koha-tmpl/intranet-tmpl/prog/js/categories.js >index be4fc5923e1..f65a390e203 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/categories.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/categories.js >@@ -53,9 +53,8 @@ $(document).ready(function () { > table_settings > ); > >- if ($("#branches option:selected").length < 1) { >- $("#branches option:first").attr("selected", "selected"); >- } >+ $("#library_limitation")[0].style.minWidth = "450px"; >+ $("#library_limitation").select2(); > > $("#categorycode").on("blur", function () { > toUC(this); >-- >2.39.5
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 39099
:
178284
|
178480
| 178727