diff --git a/src/app/formulaire/definition/form-verificateur.ts b/src/app/formulaire/definition/form-verificateur.ts index 92d538c9895305fa7a48791ccb2a0e32922a1275..6c07e62c518635dab4d67af1d30d2f2dbed9b87d 100644 --- a/src/app/formulaire/definition/form-verificateur.ts +++ b/src/app/formulaire/definition/form-verificateur.ts @@ -30,9 +30,7 @@ export class FormulaireVerificateur extends FormulaireFixedVar { if (sender.id === "select_target_pass" && data.action === "select") { // update Verificateur property: Pass to check this._currentNub.properties.setPropValue("nubToVerify", data.value ? data.value.value : undefined); - // refresh jet type selector - const ntv = (this._currentNub as Verificateur).nubToVerify; - (this.getFormulaireNodeById("select_pab_jet_type") as SelectField).disabled = ! (ntv !== undefined && ntv.calcType === CalculatorType.Pab); + this.refreshJetTypeSelector(); } else if (sender.id === "select_species_list" && data.action === "select") { // update Verificateur property: Species list (string[]) @@ -43,4 +41,18 @@ export class FormulaireVerificateur extends FormulaireFixedVar { } } + protected compute() { + this.runNubCalc(this.currentNub); + this.reaffectResultComponents(); + // do not refreshFieldsets() (useless here) or jet type selector's disabled state will be reset + } + + /** + * Disables Jet Type selector if target pass is not a Pab + */ + protected refreshJetTypeSelector() { + const ntv = (this._currentNub as Verificateur).nubToVerify; + (this.getFormulaireNodeById("select_pab_jet_type") as SelectField).disabled = ! (ntv !== undefined && ntv.calcType === CalculatorType.Pab); + } + }