[Koha-bugs] [Bug 11708] Display all basketgroups on one page, and new column aqbasketgroups.closeddate

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed May 28 12:10:12 CEST 2014


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11708

Jonathan Druart <jonathan.druart at biblibre.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jonathan.druart at biblibre.co
                   |                            |m

--- Comment #14 from Jonathan Druart <jonathan.druart at biblibre.com> ---
Julian,
Please add this change:

    MT12443: 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.

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 2d5715a..b3ec49d 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);

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list