vote up 1 vote down star

What is the thinking/philosophy behind having tunneling before Bubbling and not viceversa .

flag

50% accept rate

2 Answers

vote up 1 vote down check

This gives the container, for example, the power to see an event before its children. This is useful in many cases, as e.g. disabling children, hover animations, drag'n'drop, selecting a parent container before continuing checking/clicking the child widget etc.

In other words, IMO it's easier to create a new container for a custom UI behavior and preview the events (tunneling) that go to stock widgets, than to create custom widgets and using a stock container (bubbling).

link|flag
Dont feel 100% with the container example taking an example I understand :) , if i have an image on a button , wouldnt i want the button to get the mousedownevent for click processing rather than the other way ? so button been composed of image bubbling should be first rather than tunneling On similar lines when would tunneling make sense before bubbling – AB Jul 11 at 5:27
If you have an image within a button and you click in the image area, the button will receive the tunneled event first ('PreviewMouseDown'), while the image will receive the bubbled event first. Since tunneling occurs before bubbling, you just need to implement the handler on the button, regardless of its content. – Vlagged Jul 13 at 7:49
vote up 1 vote down

Tunneling is before bubbeling because event handlers are in the element tree root.

This is well explained here in "Routing strategies"

link|flag
thanks for the doc mate , was helpful – AB Jul 11 at 5:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.