There are many other controls in each row with this particular dropdown list. after a redirection, on ngInit, I have value in item, then I am setting the item's value in each row. everythin working fine. But for this dropdown list, just updating the item.duration model is not showing the selected value of the drop down list.
<td>
<select class="form-control" (change)="durationChange(item, $event.target.value)" [value]='item.duration'>
<option value="1">1 Month</option>
<option value="3">3 Months</option>
<option value="6">6 Months</option>
</select>
</td>
