Angular select options control does not reset ngModel value automatically even if I empty the array of options

10,483

Solution 1

I think in your expectation has something wrong, no need to empty the dropdown list. Just need to set the ngModel to empty value like this model.power = ''.

So since you are using template driven form here also you could reset the form state by using the reset() method of the form (heroForm) like bellow, no need to change anything:

<button type="button" class="btn btn-default" (click)="heroForm.reset()">Clear Array</button>

Working DEMO

If you need to empty the dropdown and also need get the form state to invalid state use like bellow

<button type="button" class="btn btn-default" (click)="powers=[]; model.power=''">Clear Array</button>

According to your updated question you could achieve it like bellow:

<div class="form-group">
        <label for="power">Hero Power</label>
        <select class="form-control" id="power"
                required
                [(ngModel)]="model.power" name="power"
                #power="ngModel">
          <option [ngValue]="null">All</option>
          <option *ngFor="let pow of powers" [ngValue]="pow">{{pow}}</option>
        </select>
      </div>

      <button type="button" class="btn btn-default" (click)="powers=[]; model.power=null">Clear Array</button>

Working DEMO

Solution 2

The model and array of options are setting differently for the selection to be get emptied you have to reset or set the ngModel to blank or "". Because the selection sets the ngModel value but it has no link to array so ngModel contains the value that is set to it. When you remove the array the value of the select is not present because it is refrence to the array of values where the ngModel does not refer to the array but the value it is set to by drop down

It is working properly.

Solution 3

Why would you expect changing an array to also change the model of a dropdown bond to it? A model can be bound to a dropdown that does not contain it's value. You cannot select that value but the model does not become null because the value is not in the values of the dropdown.

You will need to manually set the value of the model to your desired value.

In your Angular 1 stackblitz if you give the model a default value it does not get cleared by the clear array https://stackblitz.com/edit/angularjs-yia6a4?file=home/home.controller.js

Share:
10,483
user296526
Author by

user296526

Updated on July 10, 2022

Comments

  • user296526
    user296526 almost 2 years

    I have a very basic select-option input control in Angular 8. User selects one item from dropdown and it's reflected correctly in dropdown as well as in ngModel variable.

    But if I empty the source array programmatically, dropdown is still keeping the old value in ngModel and angular validation shows the control to be in a "valid" state. However, nothing is shown as selected in the dropdown as the source array is now empty.

    I am expecting that ngModel should be reset and control should be in invalid state as nothing is selected now.

    Is my expectation wrong? Or am I doing something wrong?

    Following is a complete example to reproduce the behavior:

    Angular 8: StackBlitz

    Update 1:

    I have created an example in Angular 1 which is working exactly as I expected. AngularJS clears the model value if there is no matching option found in options array. My point is that if dropdown is visible empty then user would assume nothing is selected. However in case of Angular2+, its holding old model value behind the scene.

    Angular 1: StackBlitz

  • user296526
    user296526 over 4 years
    My expectation is based on how it used to behave in Angular 1. I have updated my question with Angular 1 example which is working as I expected.
  • user296526
    user296526 over 4 years
    My expectation is based on how it used to behave in Angular 1. I have updated my question with Angular 1 example which is working as I expected.
  • user296526
    user296526 over 4 years
    the model and array were connected to each other in case of Angular 1. I have updated my question with Angular 1 example which is working as I expected.
  • user296526
    user296526 over 4 years
    Also, I am not resetting the form or emptying the array in real app. In actual code, I have some logic to manipulate the options array. So at some point the currently selected item might not be available in the options, and I was expecting the control to go in invalid state if nothing is visibly selected in it.
  • coder
    coder over 4 years
    updated the stackblitz please check
  • Adrian Brand
    Adrian Brand over 4 years
    You are no longer using Angular 1, many things are different in Angular over AngularJs
  • Adrian Brand
    Adrian Brand over 4 years
    In your Angular 1 StackBlitz try giving it a default value $scope.selectedPower = 'some value'; and you will see the same behavior.