mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 22:43:02 +01:00
eb64909db6
-> Correction d'un bug lors d'FX concurrent -> this.onChangeColor : mis en paramètre de la couleur lors d'un changement.
54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
var LSformElement_text_field = new Class({
|
|
initialize: function(name,input,parent){
|
|
this.name = name;
|
|
this.parent = parent;
|
|
this.input = input;
|
|
this.params = varLSdefault.LSjsConfig[this.name];
|
|
this._auto=1;
|
|
this.input.addEvent('change',this.unauto.bind(this));
|
|
this.onChangeColor = '#f16d6d';
|
|
},
|
|
|
|
start: function() {
|
|
var force=0;
|
|
if ($type(this.params)) {
|
|
if (this.params.autoGenerateOnModify) {
|
|
force = 1;
|
|
}
|
|
}
|
|
if ((this.input.value=='')||(force)) {
|
|
if ($type(this.params)) {
|
|
if ($type(this.params['generate_value_format'])) {
|
|
this.format = this.params['generate_value_format'];
|
|
this.dependsFields = this.parent.getDependsFields(this.format);
|
|
this.dependsFields.each(function(el) {
|
|
var input = this.parent.getInput.bind(this.parent)(el);
|
|
input.addEvent('change',this.refreshValue.bind(this));
|
|
},this);
|
|
this.oldBg=this.input.getStyle('background-color');
|
|
this.fx = new Fx.Tween(this.input,{property: 'background-color',duration:600});
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
getInput: function() {
|
|
return this.input;
|
|
},
|
|
|
|
getValue: function() {
|
|
return this.input.value;
|
|
},
|
|
|
|
refreshValue: function() {
|
|
if (this._auto) {
|
|
this.input.value=getFData(this.format,this.parent,'getValue');
|
|
this.fx.start(this.onChangeColor);
|
|
(function() {this.fx.start(this.oldBg);}).delay(1000,this);
|
|
}
|
|
},
|
|
|
|
unauto: function() {
|
|
this._auto=0;
|
|
}
|
|
});
|