silverstripe-framework/javascript/SelectionGroup.js
Normann Lou 02f4ff232f ENHANCMENT: get svn merged revision 84806:84808 from branches/iss
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@84814 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-08-19 05:47:02 +00:00

27 lines
758 B
JavaScript
Executable File

(function($) {
$(document).ready(function() {
$('ul.SelectionGroup input.selector').livequery('click', function(){
var prnt = this.parentNodeWithTag('ul');
var li = this.parentNodeWithTag('li');
var i, item, allItems = prnt.childNodes;
for(i=0;item=allItems[i];i++) if(item.tagName) {
if(item == li) {
Element.addClassName(item, 'selected')
} else {
Element.removeClassName(item, 'selected')
}
}
});
})
})(jQuery);
SelectionGroupSelector = Class.create();
SelectionGroupSelector.prototype = {
parentNodeWithTag: function(tagName){
var el = this.parentNode;
while(el.parentNode && el.tagName.toLowerCase() != tagName) el = el.parentNode;
return el;
}
}
SelectionGroupSelector.applyTo('ul.SelectionGroup input.selector');