FoTextInputComponent constructor
FoTextInputComponent(
- @Self() @Optional() NgControl? control,
- Element host,
- ChangeDetectorRef _changeDetectorRef
Implementation
FoTextInputComponent(
@Self() @Optional() this.control, this.host, this._changeDetectorRef) {
control?.valueAccessor = this;
_windowResizeSub = html.window.onResize.listen(
(_) => dropdownWidth = host.getBoundingClientRect().width.toInt() - 2);
}