mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
ce5becdcfd
svn://svn.silverstripe.com/silverstripe/modules/sapphire/branches/2.2.0-mesq ........ r47323 | ischommer | 2007-12-19 14:33:29 +1300 (Wed, 19 Dec 2007) | 1 line documentation, added show-on-click functionality, fixed validation for canBeEmpty ........ git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@47322 467b73ca-7a2a-4603-9d3b-597d59a354a9
26 lines
584 B
JavaScript
26 lines
584 B
JavaScript
Behaviour.register({
|
|
'div.confirmedpassword' : {
|
|
initialize: function() {
|
|
var rules = {};
|
|
rules['#'+this.id+' .showOnClick a'] = {onclick: function(e) {
|
|
this.toggle();
|
|
Event.stop(e);
|
|
}.bind(this)};
|
|
|
|
Behaviour.register(rules);
|
|
|
|
this.toggle();
|
|
},
|
|
|
|
toggle: function() {
|
|
var containers = $$('.showOnClickContainer', this);
|
|
if(!containers.length) return false;
|
|
|
|
var container = containers[0];
|
|
Element.toggle(container);
|
|
var hiddenField = $$('input.hidden', this)[0];
|
|
hiddenField.value = (Element.visible(container));
|
|
}
|
|
|
|
}
|
|
}); |