I am passing data for comboxBox or dropdwonList in a ngFor. How can I set the value based on object in datasource. For-example I want to set ngModel as healthParameterValue.isSelected to select that value for comboBox.
All the example I have seen they are passing static value to the ngModel but I want to set value dynamically.
<tbody *ngFor="let healthParameters of healthParameterType.healthParameters; let i = index">
<tr>
<td>{{healthParameters.healthParameterSetting}}</td>
<td width="30%">
<div class="formCheckGroup pab-2" *ngIf="healthParameters.isMultiSelectEnabled == false" >
<kendo-combobox
[data]="healthParameters.healthParameterValues"
[textField]="'name'"
[valueField]="'id'"
[(ngModel)]="defaultItem[healthParameterValue.isSelected]"
name="HealthParameterValue
(valueChange)="valueChange($event,healthParameterType.id,healthParameters.id)">
</kendo-combobox>
</div>
</td>
</tr>
Thanks in advance.
I'm not sure what is defaultItem in your example, but according to the documentation, the correct way to set dynamic value for a
kendo-combobox
is the following:so working demo