I want to disable all options once two options checked. I have tried (ionChange) but this event fired after clicking the "Ok" button of the select model. Is there any other event which execute before "ionChange"?
<ion-item>
<ion-label>Values</ion-label>
<ion-select formControlName="Values" multiple="true">
<ion-option value="1">1 value</ion-option>
<ion-option value="2">2 value</ion-option>
<ion-option value="3">3 value</ion-option>
<ion-option value="4">4 value</ion-option>
<ion-option value="5">5 value</ion-option>
</ion-select>
</ion-item>
