What is Event Delegation Model »
By Ramakrishna on Dec 10, 2008 in Event Delegation Model | 0 Comments
Event Delegation Model
Wen the user generates an event, the component delegates(handovers) that event to a listner.
Listener is an interface that contains same methods, so Listener will delegate the event to one of the methods, finally the method is executed and the event is handled, this is called event delegation model.
Event delegation model is used to [...]
