JavaBeans on a web page
Hi,
I've been trying to link two Java beans on a web page running on Internet Explorer 6.
The beans communicate via an event which extends EventObject.
The beans are linked through a JavaScript method which gets the reference of one and calls the addXXXListener class of the other bean.
When the event is triggered and the method defined in the listener is called in Bean A through the listener, nothing happens.
I have tried triggering an ActionEvent and that seems to work fine, it's only when I try to use my own event that I have problems.
By the way, the whole thing works perfect as an applet.
Does anyone know how to link beans on a web page, using my own events to communicate between them?

