Opened 15 years ago
Closed 14 years ago
#2414 closed bug (fixed)
Broken handling of embedded applets
Reported by: | dimi | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | event | Version: | 1.4a1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When Java objects are present, the handling of ajax events break. The bug is at line 2019 in 1.2.3, and it generates the following exception:
Java class com.aurigma.imageuploader.ImageUploader has no public field or method named "onajaxStop"
Problem is at this line:
if ( !fn && elem["on"+type] && elem["on"+type].apply( elem, data ) === false ...
If we just try to access the "on"+type, the Java LiveConnect will try to lookup such a method on the Java object, and fail with an exception.
Change History (2)
comment:1 Changed 15 years ago by
comment:2 Changed 14 years ago by
Component: | core → event |
---|---|
Milestone: | 1.2.4 → 1.4 |
Resolution: | → fixed |
Status: | new → closed |
Version: | 1.2.3 → 1.4a1 |
Note: See
TracTickets for help on using
tickets.
This appears to be related to #2349 and #1675. The problem is that FF2 can't add handle the jQuery expando on any element that contains a Java applet.