Update
Can anyone please explain event delegation in JavaScript and how is it useful?
Original:
Delegation in programming. Can anyone please explain delegation and how is it useful?
|
|
Update Can anyone please explain event delegation in JavaScript and how is it useful? Original: Delegation in programming. Can anyone please explain delegation and how is it useful? |
||||||||
|
|
|
Wikipedia can. A brief quote, see the article for more:
|
||||
|
|
|
DOM event delegation is a mechanism of responding to ui-events via a single common ancestor rather than each child descendant, through the magic of event "bubbling" (aka event propagation). When an event is triggered on an element, the following occurs:
Event bubbling provides the foundation for event delegation in browsers. Now you can bind an event handler to a single parent element, and that handler will get executed whenever the event occurs on any of its child nodes (again, for events that "bubble"). This is event delegation. Here's an example of it in practice:
With that example if you were to click on any of the child So what's the benefit? Imagine you now have a need to dynamically add new
Without using event delegation you would have to "rebind" the This is absolutely fantastic for web apps with event handlers bound to many elements, where new elements are dynamically created and/or removed in the DOM. With event delegation the number of event bindings can be drastically decreased by moving them to a common parent element, and code that dynamically creates new elements on the fly can be decoupled from the logic of binding their event handlers. Another benefit to event delegation is that the total memory footprint used by event listeners goes down (since the number of event bindings go down). It may not make much of a difference to small pages that unload often (i.e. user's navigate to different pages often). But for long-lived applications it can be significant. There are some really difficult-to-track-down situations when elements removed from the DOM still claim memory (i.e. they leak), and often this leaked memory is tied to an event binding. With event delegation you're free to destroy child elements without risk of forgetting to "unbind" their event listeners (since the listener is on the ancestor). These types of memory leaks can then be contained (if not eliminated, which is freaking hard to do sometimes. IE I'm looking at you). Here are some better concrete code examples of event delegation:
|
|||
|
|
|
|
Delegation is a technique where an object expresses certain behavior to the outside but in reality delegates responsibility for implementing that behaviour to an associated object. This sounds at first very similar to the proxy pattern, but it serves a much different purpose. Delegation is an abstraction mechanism which centralizes object (method) behavior. Generally spoken: use delegation as alternative to inheritance. Inheritance is a good strategy, when a close relationship exist in between parent and child object, however, inheritance couples objects very closely. Often, delegation is the more flexible way to express a relationship between classes. This pattern is also known as "proxy chains". Several other design patterns use delegation - the State, Strategy and Visitor Patterns depend on it. |
||
|
|
|
|
A delegate in C# is similar to a function pointer in C or C++. Using a delegate allows the programmer to encapsulate a reference to a method inside a delegate object. The delegate object can then be passed to code which can call the referenced method, without having to know at compile time which method will be invoked. See this link --> http://www.akadia.com/services/dotnet%5Fdelegates%5Fand%5Fevents.html |
||
|
|
|
|
|
||
|
|
|
|
dom event delegation is something different from the computer science definition. It refers to handling bubbling events from many elements, like table cells, from a parent object, like the table. It can keep the code simpler, especially when adding or removing elements, and saves some memory. |
||
|
|