From 768423d5e4d66219af087d95043d8eb3cf06e01a Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 28 May 2014 11:58:01 +0200 Subject: [PATCH] Bug 11708: explicitly remove pagination The use of columnfilter seems to keep the pagination even if the sDom is 't'. We want to remove the pagination here in order to show all data in the table. To reproduce: Add 10+ closed basketgroup and verify all are displayed. Without this patch, only the 10 first are displayed. --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt index b179d1f..fa15e3d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt @@ -140,6 +140,7 @@ function submitForm(form) { { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false }, ], sDom: 't', + "bPaginate": false, "bAutoWidth": false } )) .columnFilter(column_filter_options); -- 2.1.0