@eqproject/eqp-dynamic-module 2.9.23 → 2.9.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/components/private/field-templates/numeric-field-template/numeric-field-template.component.mjs +6 -5
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +5 -4
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +5 -4
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3346,10 +3346,11 @@ class NumericFieldTemplateComponent {
|
|
|
3346
3346
|
this.record[this.field.Name] = null;
|
|
3347
3347
|
}
|
|
3348
3348
|
}
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3349
|
+
// Non ricordo perchè ho messo questo codice, quindi lo commento, poi ci penseremo (l'attivazione crea un loop, non farlo)
|
|
3350
|
+
/*if (this.field.DataGetter.DataGetterType == DataGetterTypeEnum.Manuale && this.record[this.field.Name] == null) {
|
|
3351
|
+
this.record[this.field.Name] = this.field.DataGetter.DataGetterValue;
|
|
3352
|
+
this.recordChange.emit(this.record);
|
|
3353
|
+
}*/
|
|
3353
3354
|
}
|
|
3354
3355
|
/**
|
|
3355
3356
|
* Metodo per emettere l'evento che il valore del record è cambiato.
|