Bugzilla – Attachment 160954 Details for
Bug 35329
Move patron searches to a modal
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35329: (follow-up) Trigger Select2 upon modal open
Bug-35329-follow-up-Trigger-Select2-upon-modal-ope.patch (text/plain), 1.50 KB, created by
Owen Leonard
on 2024-01-12 12:57:23 UTC
(
hide
)
Description:
Bug 35329: (follow-up) Trigger Select2 upon modal open
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2024-01-12 12:57:23 UTC
Size:
1.50 KB
patch
obsolete
>From ce50ea9ca2820bcb0f2cf31c5f904bf5ae812f15 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Wed, 10 Jan 2024 12:20:28 +0000 >Subject: [PATCH] Bug 35329: (follow-up) Trigger Select2 upon modal open > >If we wait until the modal is visible Select2 can correctly calculate >the width needed for the Sort 1 and Sort 2 dropdowns. > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > .../intranet-tmpl/prog/en/includes/patron-search.inc | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > >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 d9c41b93db..e9fe753f0f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc >@@ -240,9 +240,15 @@ > var extended_attribute_types = [% To.json(extended_attribute_types || []) | $raw %]; > [% END %] > >- $(document).ready(function() { >+ $(document).on("shown.bs.modal", function(){ > $('select[name="sort1_filter"]').select2({allowClear:true}); > $('select[name="sort2_filter"]').select2({allowClear:true}); >+ }).on("hidden.bs.modal", function(){ >+ ["sort1_filter", "sort2_filter"].forEach(function(item){ >+ if( $('select[name=' + item + ']').data("select2") ){ >+ $('select[name=' + item + ']').select2("destroy"); >+ } >+ }); > }); > </script> > >-- >2.30.2
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 35329
:
160698
|
160699
|
160700
|
160701
|
160702
|
160703
|
160704
|
160705
|
160706
|
160728
|
160729
|
160733
|
160734
|
160735
|
160736
|
160737
|
160738
|
160739
|
160740
|
160741
|
160742
|
160743
|
160759
|
160760
|
160761
|
160762
|
160763
|
160768
|
160769
|
160770
|
160771
|
160773
|
160774
|
160940
|
160941
|
160943
|
160944
|
160945
|
160946
|
160947
|
160948
|
160949
|
160950
|
160951
|
160952
|
160953
|
160954
|
160955
|
160956
|
160957
|
160958
|
160959
|
161165
|
161166
|
161183
|
161184
|
161185
|
161186
|
161187
|
161188
|
161189
|
161190
|
161191
|
161192
|
161193
|
161194
|
161195
|
161196
|
161197
|
161198
|
161199
|
161259
|
161260
|
161274
|
161275
|
161276
|
161277
|
161278
|
161279
|
161280
|
161281
|
161282
|
161283
|
161284
|
161285
|
161286
|
161287
|
161288
|
161289
|
161290
|
161291
|
161292
|
161293
|
161294
|
161295
|
161398
|
161399
|
161400
|
161401
|
161402
|
161403
|
161404
|
161405
|
161406
|
161407
|
161408
|
161409
|
161410
|
161411
|
161412
|
161413
|
161414
|
161415
|
161416
|
161417
|
162436
|
162437
|
162438
|
162439
|
162440
|
162441
|
162442
|
162443
|
162444
|
162445
|
162446
|
162447
|
162448
|
162449
|
162450
|
162451
|
162452
|
162453
|
162454
|
162455
|
162456
|
162457
|
162670
|
162671
|
162713
|
162714