Have datatable and table contains two dropdowns(disabled mode) for every columns. While checkbox checked need to enable dropdowns. Im able to enable only dropdown, second dropdown box not enabled. Tried below code, could you please help me how to enable dropdowns,
<td><input [(ngModel)]="person.check" [checked]="isChecked" type="checkbox" class="checkboxCls"></td>
<td>
<select [disabled]="!person.check?true:null" [(ngModel)]="person.test2">
<option value=""></option>
<option value="test1">test1</option>
<option value="test2">test2</option>
</select>
</td>