I\'m writing an angular2 component and am facing this problem.
Description: I want to push an option value in select selector to its handler when the
In angular 4, this worked for me
template.html
component.ts
export class FilterComponent implements OnInit {
selectedFilter:string;
public filterTypes = [
{value:'percentage', display:'percentage'},
{value:'amount', display:'amount'},
];
constructor() {
this.selectedFilter='percentage';
}
filterChanged(selectedValue:string){
console.log('value is ',selectedValue);
}
ngOnInit() {
}
}