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
There is a way to get the value from different options. check this plunker
component.html
{{type}}
component.ts
this.types = [ 'type1', 'type2', 'type3' ]; this.order = { type: 'type1' }; callType(value){ console.log(value); this.order.type=value; }