[Koha-bugs] [Bug 6373] New: The mandatory fields validation popup doesn't appear in IE8

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu May 19 16:58:49 CEST 2011


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6373

             Bug #: 6373
           Summary: The mandatory fields validation popup doesn't appear
                    in IE8
    Classification: Unclassified
 Change sponsored?: ---
           Product: Koha
           Version: rel_3_2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P5
         Component: Cataloging
        AssignedTo: gmcharlt at gmail.com
        ReportedBy: fcapovilla at live.ca
         QAContact: koha-bugs at lists.koha-community.org
                CC: ian.walls at bywatersolutions.com


Created attachment 4190
  --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=4190
Corrects a validation problem on addbiblio.pl on IE8

On /cataloguing/addbiblio.pl :
In some cases, the mandatory field validation popup doesn't appear when trying
to add a new bibliographic record on IE8.

It seems this line makes IE8 stop executing the AreMandatoriesNotOk function :
document.getElementById(mandatories[i]).focus();

I replaced this line with its JQuery equivalent and it seems to fix the
problem:
$('#' + mandatories[i]).focus();

Patch attached

-- 
Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA Contact for the bug.


More information about the Koha-bugs mailing list