Last one for 2012..
How does Delegator fit into the other idea of event delegation where you declare an action on some parent relaying it to childs?
Let's say I have a table with 10 or 500 rows and there's a "remove row" link in each row. There's no fancy class involved that does other stuff to the table.
document.id('myTable').addEvent('click:relay(a.remove)', function(){ ... })
With Delegator I would decorate the links for each row like <a href="#" data-trigger="RemoveRow">remove</a> or something... but isn't this inefficient when you have many rows?