From: Dan S. <dy...@fu...> - 2000-11-17 15:56:22
|
> I ran into trouble when I tried to bring cancelBrowserEvent() to IE 5. I > followed the debugger into DynLayer.EventMethod, after I clicked on a Label. > The e.srcElement is the <FONT>, instead of the <DIV> label layer, and the > events are ignored for the label. Is there any work-around for IE 5 in this > case? My first guess would be event bubbling. Somehow that event is not bubbling to the DIV element, rather getting stopped as soon as it's fired. Check in the label code that the event listener for stopping the selection DOES NOT have the "setBubble()" call, rather uses cancelBrowserEvent() - this may/should fix the problem. Dan |