-
Notifications
You must be signed in to change notification settings - Fork 0
onSelect
Evgenii Koriakin edited this page Jul 8, 2016
·
4 revisions
Fires when an item from the list is selected by the user.
item Object
The selected item.
Subscribes to onSelect
event:
HTML:
<eq-combo-box #fabricsComboBox
(onSelect)="select($event)">
</eq-combo-box>
TypeScript:
export class AppComponent {
@ViewChild('fabricsComboBox') fabricsComboBox: EqwadComboBox;
select(item: Object) {
// Handle the event.
}
}