Here is my form:
<form [formGroup]="form">
<jqxComboBox [source]="source" formControlName="control">
</jqxComboBox>
</form>
I'm trying to update it from code behind like this:
this.form.get("control").setValue(value);
It works with jqxInput
but not with jqxComboBox
. Is there something I'm missing?