https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40948

--- Comment #3 from Brendan Lawlor <[email protected]> ---
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to