From d9d0ea3904d4aa3b7498a3c0f4516bd497b59f8b Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 21 Feb 2015 20:30:07 +0100 Subject: [PATCH] Bug 13744: Fix datatables paging on 'order from subscription' page The paging of the datatable on the 'order from subscription' page is broken without this patch. To test: - Make sure you have a subscription, note the vendor - Create a new basket for this vendor - Add a new order line 'from a subscription' - Check paging on the result table displays correctly Signed-off-by: Nicole Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi --- .../prog/en/modules/acqui/newordersubscription.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt index 18cfdec499..fadfa6a3ff 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt @@ -20,7 +20,8 @@ { "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] }, { "sType": "anti-the", "aTargets" : [ "anti-the" ] }, { "sType": "title-string", "aTargets" : [ "title-string" ] } - ] + ], + "sPaginationType": "four_button" } ) ) $("#show_only_renewed").click(function(){ -- 2.39.5