CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   Post a JavaScript (http://www.codingforums.com/forumdisplay.php?f=19)
-   -   Event Delegation (http://www.codingforums.com/showthread.php?t=273364)

AndrewGSW 09-17-2012 03:09 PM

Event Delegation
 
This example demonstrates Event Delegation in JavaScript; or, at least, my interpretation of this topic ;)

Event delegation has two related meanings. In languages other than JS a delegate is an object that is created specifically to respond to an event on an object (or objects). The simpler meaning for this example is the following:

Quote:

We attach an event to a parent object and, when the event occurs, we discover which specific child-element was the target of the event.
People commonly loop through rows of a table, or list-items, attaching an event (such as click) to each row/td or item. Depending on how the event is attached, each element may obtain their own copy of the event. This is inefficient and can largely be avoided.

The following example attaches the click event to the (parent) ol-element. When this is clicked we respond to the event BUT ONLY FOR LI-ITEMS. The counter confirms that there is only one instance of the alertText() function.

Code:

<!DOCTYPE html>
<html>
<head>
<title>Some Title</title>
<script type="text/javascript">
var addEvent = function (elem, eventType, func) {
    if ( elem.addEventListener )
        addEvent = function (elem, eventType, func) {
            elem.addEventListener(eventType, func, false);
        };
    else if ( elem.attachEvent )
        addEvent = function (elem, eventType, func) {
            elem.attachEvent('on' + eventType, func);
        };
    else
        addEvent = function (elem, eventType, func) {
            elem['on' + eventType] = func;
        };
    addEvent(elem, eventType, func);
};

var delegateEvent = function (elem, childElems, eventType, func) {
    addEvent(elem, eventType, function (e) {
        var evt = e || window.event;
        var elem = evt.target || evt.srcElement;
        if ( elem.nodeName.toLowerCase() === childElems.toLowerCase() ) {
            func(elem);
        }
    });
}

function alertText(obj) {
    this.counter = this.counter || 1;
    alert(counter++ + ' hits :' + obj.innerHTML);
}

function init() {
    delegateEvent(document.getElementById('thelist'), 'li', 'click', alertText);
}

addEvent(window, 'load', init);
</script>

</head>

<body>
<ul id="thelist">
    <li>The first line</li>
    <li>.. and the second one</li>
    <li>just a third..</li>
    <li>and finally, a fourth.</li>
</ul>


</body>
</html>


AndrewGSW 09-17-2012 09:33 PM

Below is an expanded version that also passes arguments to the delegated event:

It will highlight rows as you mouseover them using a supplied colour argument, also (optionally) displaying the row number ("Row 1", etc.). When the mouse moves out the previous background colour is re-instated and the temporary title ("Row 1", etc.) is removed.

Code:

<!DOCTYPE html>
<html>
<head>
<title>Highlight Rows</title>
<style type="text/css">
    table {
        background-color: lightgreen;
    }
</style>
<script type="text/javascript">
var addEvent = function (elem, eventType, func) {
    if ( elem.addEventListener )
        addEvent = function (elem, eventType, func) {
            elem.addEventListener(eventType, func, false);
        };
    else if ( elem.attachEvent )
        addEvent = function (elem, eventType, func) {
            elem.attachEvent('on' + eventType, func);
        };
    else
        addEvent = function (elem, eventType, func) {
            elem['on' + eventType] = func;
        };
    addEvent(elem, eventType, func);
};

var delegateEvent = function (elem, childElems, eventType, func, args) {
    addEvent(elem, eventType, function (e) {
        var evt = e || window.event;
        var elem = evt.target || evt.srcElement;
        if ( elem.nodeName.toLowerCase() === childElems.toLowerCase() ) {
            func(elem, args);
        }
    });
};

function highlightRows(obj, args) {
    if (args && args.over && args.over === true) {
        obj.prevColour = obj.parentNode.style.backgroundColor;
        obj.parentNode.style.backgroundColor = args.colour;
        if (args.index && obj.title=="")
            obj.title = "Row " + obj.parentNode.rowIndex;
    } else {
        obj.parentNode.style.backgroundColor = obj.prevColour;
        if (obj.title.indexOf("Row ") + 1)
            obj.title = "";
    }
}

function init() {
    delegateEvent(document.getElementById('thetable'), 'td', 'mouseover',
                  highlightRows, {'colour': 'lightblue', 'over': true, 'index': true});
    delegateEvent(document.getElementById('thetable'), 'td', 'mouseout',
                  highlightRows, {'over': false});
}

addEvent(window, 'load', init);
</script>

</head>

<body>
<table id="thetable" summary="highlight demo">
    <tr><td>Just one</td><td>.. no another</td></tr>
    <tr><td>Second</td><td>.. no another</td></tr>
    <tr style="background-color: yellow;"><td>A third</td><td>.. no another</td></tr>
    <tr><td>Fourth for luck</td><td>.. no another</td></tr>
</table>


</body>
</html>

If the background colours were set using a stylesheet, rather than inline, then it would not be necessary to store the 'prevColour': setting the colour to "" would set the rows back to their original colours.

DaveyErwin 09-19-2012 01:04 AM

Code:

var addEvent = function (elem, eventType, func) {    if ( elem.addEventListener )        addEvent = function (elem, eventType, func) {            elem.addEventListener(eventType, func, false);        };    else if ( elem.attachEvent )        addEvent = function (elem, eventType, func) {            elem.attachEvent('on' + eventType, func);        };    else        addEvent = function (elem, eventType, func) {            elem['on' + eventType] = func;        };    addEvent(elem, eventType, func); };
do you know of
a browser that will
execute the red code ?

AndrewGSW 09-19-2012 01:35 AM

Quote:

Originally Posted by DaveyErwin (Post 1271150)
Code:

var addEvent = function (elem, eventType, func) {    if ( elem.addEventListener )        addEvent = function (elem, eventType, func) {            elem.addEventListener(eventType, func, false);        };    else if ( elem.attachEvent )        addEvent = function (elem, eventType, func) {            elem.attachEvent('on' + eventType, func);        };    else        addEvent = function (elem, eventType, func) {            elem['on' + eventType] = func;        };    addEvent(elem, eventType, func); };
do you know of
a browser that will
execute the red code ?

No I don't: it could safely be removed.


All times are GMT +1. The time now is 05:20 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.