mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 22:43:02 +01:00
57 lines
1.7 KiB
JavaScript
57 lines
1.7 KiB
JavaScript
|
var LSsession_recoverPassword = new Class({
|
||
|
initialize: function(){
|
||
|
this.select_ldapserver = $('LSsession_ldapserver');
|
||
|
if ( ! this.select_ldapserver )
|
||
|
return;
|
||
|
this.loading_zone = $('loading_zone');
|
||
|
this.select_ldapserver.addEvent('change',this.onLdapServerChanged.bind(this));
|
||
|
this.onLdapServerChanged();
|
||
|
},
|
||
|
|
||
|
disableInput: function() {
|
||
|
$$('input').each(function(el) {
|
||
|
el.setProperty('disabled','1');
|
||
|
});
|
||
|
},
|
||
|
|
||
|
enableInput: function() {
|
||
|
$$('input').each(function(el) {
|
||
|
el.setProperty('disabled','');
|
||
|
});
|
||
|
},
|
||
|
|
||
|
onLdapServerChanged: function(){
|
||
|
this.disableInput();
|
||
|
var imgload = varLSdefault.loadingImgDisplay(this.loading_zone,'inside','big');
|
||
|
var server = this.select_ldapserver.value;
|
||
|
var data = {
|
||
|
template: 'recoverPassword',
|
||
|
action: 'onLdapServerChanged',
|
||
|
server: server,
|
||
|
imgload: imgload
|
||
|
};
|
||
|
new Request({url: 'index_ajax.php', data: data, onSuccess: this.onLdapServerChangedComplete.bind(this)}).send();
|
||
|
},
|
||
|
|
||
|
onLdapServerChangedComplete: function(responseText, responseXML){
|
||
|
varLSdefault.loadingImgHide();
|
||
|
var data = JSON.decode(responseText);
|
||
|
LSdebug(data);
|
||
|
if ( varLSdefault.checkAjaxReturn(data) ) {
|
||
|
if (data.recoverPassword) {
|
||
|
this.enableInput();
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
loginformLevelHide: function(){
|
||
|
$$('.loginform-level').each(function(el) {
|
||
|
el.setStyle('display','none');
|
||
|
});
|
||
|
$('LSsession_topDn').empty();
|
||
|
}
|
||
|
});
|
||
|
window.addEvent(window.ie ? 'load' : 'domready', function() {
|
||
|
varLSsession_recoverPassword = new LSsession_recoverPassword();
|
||
|
});
|