@@ -, +, @@ pagination --- .../prog/en/modules/catalogue/search-history.tt | 56 ++++++++++++++++------ 1 file changed, 42 insertions(+), 14 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/search-history.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/search-history.tt @@ -23,33 +23,60 @@ $(document).ready(function() { $('#tabs').tabs(); + // DataTables removes hidden rows from the DOM, so we can't expect a + // "regular" submit to work and we need to build another form containing + // all form elements, and then submit this form. + $('form').submit(function(e) { + e.preventDefault(); + + var form = $(this); + var table = form.find('table').dataTable(); + + var new_form = $('