mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
02f4ff232f
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@84814 467b73ca-7a2a-4603-9d3b-597d59a354a9
27 lines
758 B
JavaScript
Executable File
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'); |