From 364af32036e532f04578e8568fa7ca530ec496b8 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 6 Jan 2025 10:48:24 +0100 Subject: [PATCH] Bug 38827: DataTables - Do not filter when inputs lose focus On a table using DataTables and the REST API wrapper with the column filters, if one input is used to filter the table the query will be made twice: when the user stopped typing and when the input will lose the focus. Test plan: Search for patron Open the dev console, "Network" tab In the "Card" column filter enter "0000" Notice that the table is filtered and that a request has been made Click outside of the "Card" input => Without this patch another request (the same) is made and the table updated => With this patch applied no request is made when the input loses the focus. --- koha-tmpl/intranet-tmpl/prog/js/datatables.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/datatables.js b/koha-tmpl/intranet-tmpl/prog/js/datatables.js index 8b342d7cb03..aeea2f28b7c 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/datatables.js +++ b/koha-tmpl/intranet-tmpl/prog/js/datatables.js @@ -877,7 +877,8 @@ function _dt_add_delay_filters(table_dt, table_node) { var i = table_dt.column.index('fromVisible', visible_i); $(this).find("input") .unbind() - .bind("keyup change", function(){ + .bind("keyup change", function(e){ + if (e.keyCode === undefined) return; col_input_search(i, this.value) }); -- 2.34.1