|
|
@@ -308,6 +308,10 @@ MWF.xApplication.process.Xform.$Input = MWF.APP$Input = new Class({
|
|
|
if (!!data && o2.typeOf(data.then)=="function"){
|
|
|
var p = o2.promiseAll(data).then(function(v){
|
|
|
this.__setValue(v);
|
|
|
+ if (this.node.getFirst() && !this.readonly && !this.json.isReadonly) {
|
|
|
+ this.checkDescription();
|
|
|
+ this.validationMode();
|
|
|
+ }
|
|
|
}.bind(this), function(){});
|
|
|
this.moduleValueAG = p;
|
|
|
p.then(function(){
|
|
|
@@ -318,6 +322,10 @@ MWF.xApplication.process.Xform.$Input = MWF.APP$Input = new Class({
|
|
|
}else{
|
|
|
this.moduleValueAG = null;
|
|
|
this.__setValue(data);
|
|
|
+ if (this.node.getFirst() && !this.readonly && !this.json.isReadonly) {
|
|
|
+ this.checkDescription();
|
|
|
+ this.validationMode();
|
|
|
+ }
|
|
|
}
|
|
|
//this.__setData(data);
|
|
|
//}
|