Bugzilla – Attachment 172541 Details for
Bug 38118
Removed empty columns on holdings table on details page are not restored when new items loaded
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38118: Display columns if not empty in drawCallback
Bug-38118-Display-columns-if-not-empty-in-drawCall.patch (text/plain), 3.23 KB, created by
Victor Grousset/tuxayo
on 2024-10-08 16:51:40 UTC
(
hide
)
Description:
Bug 38118: Display columns if not empty in drawCallback
Filename:
MIME Type:
Creator:
Victor Grousset/tuxayo
Created:
2024-10-08 16:51:40 UTC
Size:
3.23 KB
patch
obsolete
>From 4fccd69e95eb42e9bd6c210d972c07e03d25bc5d Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 8 Oct 2024 15:38:18 +0200 >Subject: [PATCH] Bug 38118: Display columns if not empty in drawCallback > >Instead of updating only when DT init is complete we are going to update >the visibility when the table will be redrawn. > >Test plan: >1 - Find/Add a bib record with no items >2 - Add 20 items from Centerville > Edit ->Edit items -> enter CENTER1 into barcode ->'Add multiple copies' -> 20 >3 - Add 20 items from Fairview as above but enter 'FAIR1' for barcode and 'FAIR ITEM' as callnumber >4 - Add 1 item from Midway with barcode MIDWAY1 >5 - Edit a midway patron to grant 'catalogue' and 'edit_items' permission - NOT edit_any_item >6 - Sign in as the patron above >7 - Find the record >8 - Note there is callnumber and actions/edit columns >9 - Go to page 2 of items - callnumber visible >10 - Go to page 3 - edit column > >Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net> >--- > .../tables/items/catalogue_detail.inc | 35 +++++++++++-------- > 1 file changed, 21 insertions(+), 14 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc >index f0672e86ce..42357360a6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc >@@ -122,6 +122,25 @@ > } > } > >+ function update_columns_visibility(settings){ >+ let table = settings.oInstance.api(); >+ table.columns().visible(true); >+ table.columns().every(function(i){ >+ let is_empty = true; >+ let nodes = this.nodes(); >+ nodes.each((td, ii) => { >+ if ( $(td).html() !== '' ) { >+ is_empty = false; >+ return; >+ } >+ }); >+ if ( is_empty ) { >+ table.columns(i).visible(false); >+ } >+ }); >+ } >+ >+ > $(document).ready(function() { > > $(".SelectAll").on("click",function(e){ >@@ -769,20 +788,6 @@ > [% END %] > ], > initComplete: function( settings, json ){ >- let table = settings.oInstance.api(); >- table.columns().every(function(i){ >- let is_empty = true; >- let nodes = this.nodes(); >- nodes.each((td, ii) => { >- if ( $(td).html() !== '' ) { >- is_empty = false; >- return; >- } >- }); >- if ( is_empty ) { >- table.columns(i).visible(false); >- } >- }); > itemSelectionBuildActionLinks(tab_id); > }, > drawCallback: function(settings){ >@@ -822,6 +827,8 @@ > }); > [% END %] > >+ update_columns_visibility(settings); >+ > if ( drawcallback ) { drawcallback(this); } > }, > ...dt_options, >-- >2.47.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 38118
:
172526
|
172541
|
172583
|
174763