Bugzilla – Attachment 183721 Details for
Bug 40298
A select2 in a bootstrap modal, like in the patron card batch patron search modal, needs it's parent defined
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 40298 - define select2 parent in patron search modal
0001-Bug-40298-define-select2-parent-in-patron-search-mod.patch (text/plain), 1.59 KB, created by
Michael Hafen
on 2025-07-02 23:59:46 UTC
(
hide
)
Description:
Bug 40298 - define select2 parent in patron search modal
Filename:
MIME Type:
Creator:
Michael Hafen
Created:
2025-07-02 23:59:46 UTC
Size:
1.59 KB
patch
obsolete
>From 38cb536fd4e750595d4b7aebeeb569d53a00f3b4 Mon Sep 17 00:00:00 2001 >From: Michael Hafen <michael.hafen@washk12.org> >Date: Wed, 2 Jul 2025 17:56:36 -0600 >Subject: [PATCH] Bug 40298 - define select2 parent in patron search modal >Content-Type: text/plain; charset="utf-8" > >The patron search modal in the patron card creator -> new batch -> patron >search has two select2 modals, sort1 and sort2. If these are not anchored >to the modal they will be anchored to the body element and appear behind the >modal. > >Trivial patch so no test plan. >--- > koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc >index 60b4afe949..d440fa60bd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc >@@ -316,8 +316,8 @@ > [% END %] > > $(document).on("shown.bs.modal", function(){ >- $('select[name="sort1_filter"]').select2({allowClear:true}); >- $('select[name="sort2_filter"]').select2({allowClear:true}); >+ $('select[name="sort1_filter"]').select2({allowClear:true,dropdownParent:$('#patron_search_modal')}); >+ $('select[name="sort2_filter"]').select2({allowClear:true,dropdownParent:$('#patron_search_modal')}); > }).on("hidden.bs.modal", function(){ > ["sort1_filter", "sort2_filter"].forEach(function(item){ > if( $('select[name=' + item + ']').data("select2") ){ >-- >2.43.0 >
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 40298
:
183721
|
183751