Bugzilla – Attachment 135300 Details for
Bug 30837
Fix table width on 'Print summary'
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30837 - Fix table width on 'Print summary'
Bug-30837---Fix-table-width-on-Print-summary.patch (text/plain), 1.86 KB, created by
Magnus Enger
on 2022-05-24 12:18:13 UTC
(
hide
)
Description:
Bug 30837 - Fix table width on 'Print summary'
Filename:
MIME Type:
Creator:
Magnus Enger
Created:
2022-05-24 12:18:13 UTC
Size:
1.86 KB
patch
obsolete
>From 6e0d2e2bfcd119049562b0933f84b30446f7236d Mon Sep 17 00:00:00 2001 >From: Magnus Enger <magnus@libriotech.no> >Date: Tue, 24 May 2022 12:12:35 +0000 >Subject: [PATCH] Bug 30837 - Fix table width on 'Print summary' > >To reproduce: >- Make sure you have a patron with at least one checkout, > one hold and one fine >- On the detail page for that patron, go to Print > Print > summary >- Observe the tables are too wide to fit on a printed page > >To test: >- Apply this patch >- Repeat the steps above >- Observe the table now fits on the page >--- > .../intranet-tmpl/prog/en/modules/members/moremember-print.tt | 3 +++ > 1 file changed, 3 insertions(+) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt >index bc993c3670..3a606e06bb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt >@@ -226,6 +226,7 @@ > KohaTable("print-summary-checkouts", { > "dom": "Bt", > "paging": false, >+ "bAutoWidth": false, > initComplete: function( settings) { > moveColumnsButton( settings.nTable.id ); > } >@@ -234,6 +235,7 @@ > KohaTable("print-summary-holds", { > "dom": "Bt", > "paging": false, >+ "bAutoWidth": false, > initComplete: function( settings) { > moveColumnsButton( settings.nTable.id ); > } >@@ -242,6 +244,7 @@ > KohaTable("print-summary-fines", { > "dom": "Bt", > "paging": false, >+ "bAutoWidth": false, > initComplete: function( settings) { > moveColumnsButton( settings.nTable.id ); > } >-- >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 30837
:
135300
|
135301
|
139044