I have a <select>
which the user can change. Initially it has a value and when the user changes it I must prompt her "are you sure"?
and in case the answer is NO then change back the <select>
's selected value to the previous one. The <select>
is bound to a collection of objects, not values.
The best I could come up with so far is this:
<select [ngModel]="selectedObj" (ngModelChange)="onSelectedObjChanged($event)">
<option *ngFor="let obj of availableObjs" [ngValue]="obj">{{whatever}}<option>
</select>
onSelectedObjChanged(obj) {
if (prompt answer is no) {
let currentlySelectedObj = this.selectedObj;
this.selectedObj = null;
this.changeDetectorRef.detectChanges();
this.selectedObj = currentlySelectedObj;
this.changeDetectorRef.detectChanges();
}
}
This works, but is ugly. Why do I do it:
onSelectedObjChanged
is called and the answer is "no", I need to somehow let angular know it has to refresh the binding target, i.e. the <select>
...this.selectedObj = this.selectedObj
as the value doesn't change and there no change detected by angular; that's why I set it to null
and back...changeDetectorRef.detectChanges()
to notify angular of itI'm sure there is a better and easier way to do this, it would be great if you could share some ideas.
Thanks!
Here's how I did it:
HTML:
<select [(ngModel)]="option"
#selectModel="ngModel"
(ngModelChange)="optionChanged($event)">
<option [ngValue]="null">PlaceHolder</option>
<option *ngFor="let o of options" [ngValue]="o">...</option>
</select>
Component:
@ViewChild('selectModel') private selectModel: NgModel;
optionChanged($event) {
//logic
this.selectModel.reset(null);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With