@@ -, +, @@ - 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 - 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(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt +++ a/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 ); } --