Skip to content

onClose

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

Summary

Fires when the list is closed by the user.

Examples

Subscribes to onClose event:

HTML:

<eq-combo-box #fabricsComboBox
    (onClose)="close()">
</eq-combo-box>

TypeScript:

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

    close() {
        // Handle the event.
    }
}