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 <david@davidnind.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Lucas Gass 2022-07-28 18:18:15 +00:00 committed by Tomas Cohen Arazi
parent 7867106d43
commit a3198f6474
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -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) {