mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 22:43:02 +01:00
16df350e74
d'affichage et les requêtes Ajax. - LSrelation : - Création d'une classe PHP gérant les dépendances d'affichage et les requêtes Ajax. - Modification du JS pour faire appels à ces méthodes - La méthode displayInLSview() remplace le bloc du fichier view.php pour l'affichage des relations d'un objet. - Internationalisation. - LSselect : Création d'une classe PHP gérant les dépendances d'affichage et les requêtes Ajax. - LSformElement_password : - Ajout de méthodes statiques gérant les appels Ajax. - Modification du JS pour faire appels à ces méthodes - LSformElement_select_object : - Ajout de méthodes statiques gérant les appels Ajax. - Modification du JS pour faire appels à ces méthodes - LSformElement_mail : Utilisation des nouvelles fonctionnalités pour gérer les dépendances. - LSformElement_image : Utilisation des nouvelles fonctionnalités pour gérer les dépendances. - LSsession : - Ajout de méthodes statiques gérant les appels Ajax des formulaires de login et de recupération de mot de passe. - Modification des JS pour faire appels à ces méthodes - Ajout d'un mécanisme permettant de garder la session PHP active - Modification de LSdefault.js pour gérer ce mécanisme - LSform : - Ajout de méthodes statiques gérant les appels Ajax des formulaires - Ajout de la méthode loadDependenciesDisplayView() gérant les dépendances d'affichage d'une LSview. - Utilisation des nouvelles fonctionnalités pour gérer les dépendances. - view.php / modify.php /select.php : Utilisation des nouvelles fonctionnalités pour gérer les dépendances et les LSrelations. - LSview : Modification de l'internationnalisation.
152 lines
5.2 KiB
JavaScript
152 lines
5.2 KiB
JavaScript
var LSselect = new Class({
|
|
initialize: function(){
|
|
this.main_page = $('LSobject-select-main-div').getParent();
|
|
this.content = $('content');
|
|
|
|
this.multiple = LSselect_multiple;
|
|
|
|
this.LSselect_search_form = $('LSselect_search_form');
|
|
var input = new Element('input');
|
|
input.setProperty('name','ajax');
|
|
input.setProperty('type','hidden');
|
|
input.injectInside(this.LSselect_search_form);
|
|
|
|
this.tempInput = [];
|
|
|
|
this.LSselect_search_form.addEvent('submit',this.onSubmitSearchForm.bindWithEvent(this));
|
|
|
|
this.LSselect_topDn = $('LSselect_topDn');
|
|
if (this.LSselect_topDn) {
|
|
this.LSselect_topDn.addEvent('change',this.onChangeLSselect_topDn.bind(this));
|
|
}
|
|
this.LSselect_refresh_btn = $('LSselect_refresh_btn');
|
|
this.LSselect_refresh_btn.addEvent('click',this.onClickLSselect_refresh_btn.bind(this));
|
|
|
|
this.initializeContent();
|
|
varLSdefault.ajaxDisplayDebugAndError();
|
|
},
|
|
|
|
initializeContent: function() {
|
|
$$('input.LSobject-select').each(function(el) {
|
|
el.addEvent('click',this.oncheckboxChange.bind(this,el));
|
|
}, this);
|
|
|
|
$$('a.LSobject-list-page').each(function(el) {
|
|
el.addEvent('click',this.onChangePageClick.bindWithEvent(this,el));
|
|
}, this);
|
|
|
|
$$('.sortBy_displayName').each(function(el) {
|
|
el.addEvent('click',this.sortBy.bind(this,'displayName'));
|
|
}, this);
|
|
|
|
$$('.sortBy_subDn').each(function(el) {
|
|
el.addEvent('click',this.sortBy.bind(this,'subDn'));
|
|
}, this);
|
|
|
|
$$('td.LSobject-select-names').each(function(el) {
|
|
el.addEvent('click',this.onNameClick.bind(this,el));
|
|
}, this);
|
|
},
|
|
|
|
oncheckboxChange: function(checkbox){
|
|
if (checkbox.checked) {
|
|
var data = {
|
|
template: 'LSselect',
|
|
action: 'addItem',
|
|
objectdn: checkbox.value,
|
|
objecttype: $('LSselect-object').getProperties('caption').caption,
|
|
multiple: this.multiple
|
|
};
|
|
}
|
|
else {
|
|
var data = {
|
|
template: 'LSselect',
|
|
action: 'dropItem',
|
|
objectdn: checkbox.value,
|
|
objecttype: $('LSselect-object').getProperties('caption').caption,
|
|
multiple: this.multiple
|
|
};
|
|
}
|
|
data.imgload=varLSdefault.loadingImgDisplay(checkbox.getParent().getNext(),'inside');
|
|
new Request({url: 'index_ajax.php', data: data, onSuccess: this.oncheckboxChangeComplete.bind(this)}).send();
|
|
},
|
|
|
|
oncheckboxChangeComplete: function(responseText, responseXML) {
|
|
var data = JSON.decode(responseText);
|
|
varLSdefault.loadingImgHide(data.imgload);
|
|
},
|
|
|
|
onChangePageClick: function(event, a) {
|
|
new Event(event).stop();
|
|
var data = {
|
|
ajax: true
|
|
};
|
|
this.searchImgload = varLSdefault.loadingImgDisplay($('LSselect_title'),'inside');
|
|
new Request({url: a.href, data: data, onSuccess: this.onChangePageClickComplete.bind(this)}).send();
|
|
},
|
|
|
|
onChangePageClickComplete: function(responseText, responseXML) {
|
|
varLSdefault.loadingImgHide(this.searchImgload);
|
|
this.content.set('html',responseText);
|
|
this.initializeContent();
|
|
},
|
|
|
|
onChangeLSselect_topDn: function() {
|
|
this.submitSearchForm();
|
|
},
|
|
|
|
onSubmitSearchForm: function(event) {
|
|
new Event(event).stop();
|
|
this.submitSearchForm();
|
|
},
|
|
|
|
submitSearchForm: function() {
|
|
this.searchImgload = varLSdefault.loadingImgDisplay($('LSselect_title'),'inside');
|
|
this.LSselect_search_form.set('send',{
|
|
data: this.LSselect_search_form,
|
|
evalScripts: true,
|
|
onSuccess: this.onSubmitSearchFormComplete.bind(this),
|
|
url: this.LSselect_search_form.get('action'),
|
|
multiple: this.multiple
|
|
});
|
|
this.LSselect_search_form.send();
|
|
},
|
|
|
|
onSubmitSearchFormComplete: function(responseText, responseXML) {
|
|
varLSdefault.loadingImgHide(this.searchImgload);
|
|
|
|
this.content.set('html',responseText);
|
|
|
|
varLSdefault.ajaxDisplayDebugAndError();
|
|
|
|
this.tempInput.each(function(el) {
|
|
el.destroy();
|
|
},this);
|
|
|
|
this.initializeContent();
|
|
},
|
|
|
|
onClickLSselect_refresh_btn: function() {
|
|
this.tempInput['refresh'] = new Element('input');
|
|
this.tempInput['refresh'].setProperty('name','refresh');
|
|
this.tempInput['refresh'].setProperty('type','hidden');
|
|
this.tempInput['refresh'].setProperty('value',1);
|
|
this.tempInput['refresh'].injectInside(this.LSselect_search_form);
|
|
this.submitSearchForm();
|
|
},
|
|
|
|
sortBy: function(value) {
|
|
this.tempInput['sortBy'] = new Element('input');
|
|
this.tempInput['sortBy'].setProperty('name','orderby');
|
|
this.tempInput['sortBy'].setProperty('type','hidden');
|
|
this.tempInput['sortBy'].setProperty('value',value);
|
|
this.tempInput['sortBy'].injectInside(this.LSselect_search_form);
|
|
this.submitSearchForm();
|
|
},
|
|
|
|
onNameClick: function(td) {
|
|
var input = td.getParent().getFirst().getFirst();
|
|
input.checked = (!input.checked);
|
|
input.fireEvent('click');
|
|
}
|
|
});
|