From: Robert R. <rai...@us...> - 2000-10-26 00:06:18
|
Hi, There seems to be some difference in the DynLayer.EventMethod and DynDocument.EventMethod: DynLayer.EventMethod: if (!src) { -> src=DynAPI.getDocument(realsrc) if (!src) return true } DynDocument.EventMethod DynLayer.EventMethod: if (!src) { -> src=DynAPI.getDocument(realsrc.elm) if (!src) return true } I believe you should pass "realsrc.id" to the getDocument. This is the id of the Javascript object. I think realsrc.elm is always undefined (I could be wrong there). Later, Robert <rai...@us...> |