Skip to content
Evgenii Koriakin edited this page Jul 8, 2016 · 3 revisions

Summary

Fires when the list is opened by the user.

Examples

Subscribes to onOpen event:

HTML:

<eq-combo-box #fabricsComboBox
    (onOpen)="open()">
</eq-combo-box>

TypeScript:

export class AppComponent {
    @ViewChild('fabricsComboBox') fabricsComboBox: EqwadComboBox;

    open() {
        // Handle the event.
    }
}
Clone this wiki locally