From 25b2ebf8b25c52078c3c5bb5a50af0c5dab31039 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 28 Jul 2022 18:18:15 +0000 Subject: [PATCH] Bug 31251: Use jQuery val() to clear_entry 1. Add some patron attributes that are textarea and some that have an AV category so they are select dropdowns 2. Go to the patron form and add some values to the patron attributes 3. Use the "Clear" button to try and clear the values, doesnt work. 4. Apply patch 5. Try clearing values from patron attributes that are both select dropdowns and textarea. The "Clear" button should work. Signed-off-by: David Nind Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit a3198f647496d87e19036432f1be9f87dac4614d) Signed-off-by: Lucas Gass --- koha-tmpl/intranet-tmpl/prog/js/members.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/members.js b/koha-tmpl/intranet-tmpl/prog/js/members.js index 9ae9c18ba8..6f58302e9a 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/members.js +++ b/koha-tmpl/intranet-tmpl/prog/js/members.js @@ -36,8 +36,8 @@ function check_form_borrowers(nav){ function clear_entry(node) { var original = $(node).parent(); - $("textarea", original).attr('value', ''); - $("select", original).attr('value', ''); + $("textarea", original).val(''); + $("select", original).val(''); } function clone_entry(node) { -- 2.20.1