From 5446df0ea0a49076a5813ceef69d41f2f8807139 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 28 May 2014 11:58:01 +0200 Subject: [PATCH 4/9] 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. Signed-off-by: Paola Rossi --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 fb31223..d38c463 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt @@ -139,8 +139,8 @@ function submitForm(form) { "aoColumnDefs": [ { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false }, ], - "bAutoWidth": false, - "sPaginationType": "four_button" + "bPaginate": false, + "bAutoWidth": false } )) .columnFilter(column_filter_options); }); -- 1.7.10.4