私は2つの選択肢のボックスを持っています。最初の選択肢の選択肢に基づいています。私がセカンドセレクトボックスの値を選択していると仮定して、そのボックスを設定しています。私は最初の選択ボックスを選択するつもりです。 2番目の選択ボックスの値は無効です。 2番目の選択ボックスの値はリセットされません。angularjsの無効な値をリセットする方法
コード:
<label class="item item-select">
<span class="input-label">Purchase Type </span>
<select name="requiredType" ng-model="bid.requiredType" required>
<option disabled="" value="">Select Purchase Type</option>
<option>Partial</option>
<option>Full</option>
</select>
</label>
<label class="item item-select">
<span class="input-label">Purchase Unit</span>
<select name="purchaseUnitType" class="form-control"
ng-model="bid.purchaseUnitType"
ng-disabled="bid.requiredType=='Full'"
x-ng-change="checkUnitType(bid.purchaseUnitType)" required="required">
<option disabled="" value="">Select Purchase Unit</option>
<option>Kg</option>
<option>Quintal</option>
<option>Ton</option>
</select>
</label>