I am trying to set a ‘smart-number-input’ control in my reactive Angular form
In the HTML...
<smart-number-input class="two-char-control" formControlName="recurringDailyFrequency"></smart-number-input>
From the typescript file...
this.taskForm.get(this.CONTROL_RECURRING_DAILY_FREQUENCY).setValue(1);
The form control is not updating with the '1' value.
I'm having the same issue with all 'smart-' components.
When I try to use 'smart-radio-button' it doesnt work. If I replace this with an input type=radio, then it does work
Any suggestions?