
This class is for grouping Classes or Events. The Event added to the Group will fire when all of the events of the items of the group are fired.
var myGroup = new Group(class[, arrays[, class2[, ... ]]]);
Any number of Class instances, or arrays containing class instances.
var xhr1 = new Request({url: 'data.js', evalScripts: true}); var xhr2 = new Request({url: 'abstraction.js', evalScripts: true}); var xhr3 = new Request({url: 'template.js', evalScripts: true}); var group = new Group(xhr1, xhr2, xhr3); group.addEvent('complete', function(){ alert('All Scripts loaded'); }); xhr1.send(); xhr2.send(); xhr3.send();
Adds an Event to the stack of Events of the Class instances.
myGroup.addEvent(type, fn);
var myElements = $('myForm').getElements('input, textarea, select'); myElements.addEvent('click', function(){ alert('an individual click'); }); var myGroup = new Group(myElements); myGroup.addEvent('click', function(){ alert('all form elements clicked'); });
© Linux.ria.ua, 2008-2024 |