[Koha-bugs] [Bug 32126] Adding item search fields is broken - can't add more than one field

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Nov 15 16:55:21 CET 2022


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

Katrin Fischer <katrin.fischer at bsz-bw.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |major
           Keywords|                            |rel_22_11_candidate

--- Comment #2 from Katrin Fischer <katrin.fischer at bsz-bw.de> ---
This is related to our changes on the page, but I haven't quite figured out yet
what's going on.

The visibility of the form on the page is managed with Javascript:

$(document).ready(function(){
    $("#add_field_form").hide();
    $("#new_search_field").on("click",function(e){
        e.preventDefault();
        $("#add_field_form").show();
        $(".dialog").hide();
        $("#search_fields_list").hide();
    });
    $(".hide_form").on("click",function(e){
        e.preventDefault();
        $("#add_field_form").hide();
        $(".dialog").show();
        $("#search_fields_list,#toolbar").show();
    });

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.


More information about the Koha-bugs mailing list