Bugzilla – Attachment 162268 Details for
Bug 36129
Check in "Hide all columns" doesn't persist on item batch modification/deletion
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36129: Make check on "Hide all columns" persist on item patch modification/deletion
0001-Bug-36129-Make-check-on-Hide-all-columns-persist-on.patch (text/plain), 1.64 KB, created by
Emmi Takkinen
on 2024-02-19 11:14:14 UTC
(
hide
)
Description:
Bug 36129: Make check on "Hide all columns" persist on item patch modification/deletion
Filename:
MIME Type:
Creator:
Emmi Takkinen
Created:
2024-02-19 11:14:14 UTC
Size:
1.64 KB
patch
obsolete
>From 1fffde189036974fc63de78019da5bac3e5f1a3d Mon Sep 17 00:00:00 2001 >From: Emmi Takkinen <emmi.takkinen@koha-suomi.fi> >Date: Mon, 19 Feb 2024 12:55:26 +0200 >Subject: [PATCH] Bug 36129: Make check on "Hide all columns" persist on item > patch modification/deletion > >On item patch modification/deletion tool, if one checks >"Hide all columns" checkbox and then reloads the page, >checkbox is no longer selected. Columns are hidden as >they should. This patch adds line to batchMod.js which >sets "checked" attribute and class "selected" to checkbox. > >To test: >1. Find items to modify/delete and modify/delete them with >corresponding tool. >2. Check checkbox "Hide all columns". >3. Refresh the page. >=> Note that columns are still hidden, but checkbox is now >unselected. >4. Apply this patch. >5. Check checkbox again and refresh page. >=> Checkbox should be still checked. > >Sponsored-by: Koha-Suomi Oy >--- > koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js b/koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js >index 128c37909f..df428f831b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js >@@ -20,6 +20,7 @@ function hideColumns() { > if (valCookie) { > valCookie = valCookie.split("/"); > $("#showall").prop("checked", false).parent().removeClass("selected"); >+ $("#hideall").prop("checked", true).parent().addClass("selected"); > for ( var i = 0; i < valCookie.length; i++ ) { > if (valCookie[i] !== '') { > var index = valCookie[i] - nb_cols; >-- >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 36129
:
162268
|
166526
|
169251