mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
4a5d9b03f8
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@39001 467b73ca-7a2a-4603-9d3b-597d59a354a9
21 lines
586 B
JavaScript
Executable File
21 lines
586 B
JavaScript
Executable File
Behaviour.register({
|
|
'ul.SelectionGroup input.selector' : {
|
|
onclick : 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')
|
|
}
|
|
}
|
|
},
|
|
parentNodeWithTag: function(tagName) {
|
|
var el = this.parentNode;
|
|
while(el.parentNode && el.tagName.toLowerCase() != tagName) el = el.parentNode;
|
|
return el;
|
|
}
|
|
}
|
|
}); |