Skip to content

close()

Evgenii Koriakin edited this page Jul 8, 2016 · 1 revision

Summary

Closes the list.

Examples

Closes the list:

HTML:

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

TypeScript:

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

    constructor() {
        this.fabricsComboBox.close();
    }
}