How do i select the first option in a select by default in angular 2 the following code don\'t seems to work.
You are mixing two things that cannot work together, as they conflict: ngModel and selected. If you bind with params.searchType you have to initialize params.searchType to the default value you want: this.params.searchType = sTypes[0];