-
Notifications
You must be signed in to change notification settings - Fork 0
isEnabled
Evgenii Koriakin edited this page Jul 21, 2016
·
2 revisions
Determines whether the component is enabled.
Value: true
Type: Boolean
Sets isEnabled
field:
HTML:
<eq-combo-box #fabricsComboBox
[isEnabled]="false">
</eq-combo-box>
TypeScript:
export class AppComponent {
@ViewChild('fabricsComboBox') fabricsComboBox: EqwadComboBox;
}
Gets itemValueField
field:
HTML:
<eq-combo-box #fabricsComboBox
[isEnabled]="false">
</eq-combo-box>
TypeScript:
export class AppComponent {
@ViewChild('fabricsComboBox') fabricsComboBox: EqwadComboBox;
constructor() {
setTimeout(() => {
let isEnabled = this.fabricsComboBox.isEnabled;
}, 1000);
}
}