Modify ↓
Opened 15 years ago
Closed 15 years ago
#6834 closed defect (worksforme)
Unable to select data
Reported by: | Owned by: | jjbig | |
---|---|---|---|
Priority: | high | Component: | CalendarPopUpPlugin |
Severity: | critical | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
When data in calendar is selected, calendar hides with no data picked. This problem is related to this source (and svn source too).
Problems goes from ticket 5314. Ticket reporter uses Opera. For this browser internal calendar hiding method doesn't works. It started to work in Opera when you added onBlur() but in other browsers it crashes.
Doesn't work in Mozilla FireFox (3.5-3.6), IE (7-8), Google Chrome.
You should determine browser type before setting onBlur() on the specified field. It will be like this:
if (navigator.appName == "Opera") element.onblur = new Function("cal.hidePopup(); return true;");
Attachments (0)
Note: See
TracTickets for help on using
tickets.
Could not verify the data problem, but the function onblur is only needed for opera, so I inserted the above if-clause.