3 Oct
2025
3 Oct
'25
5:01 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40948 --- Comment #3 from Brendan Lawlor <blawlor@clamsnet.org> --- Another thought is that we could still trigger the form validation on blur of the input so that the user would get immediate feedback for the field as soon as they finish editing it like: $("body").on("blur", ".cost_input", function () { if ( ! $('#cost_matrix_form')[0].checkValidity() ) { $('#cost_matrix_form')[0].reportValidity(); } }); -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.