Кажется, я не могу сосредоточиться на поле ввода динамически добавленной FormGroup:
addNewRow(){
(<FormArray>this.modalForm.get('group1')).push(this.makeNewRow());
// here I would like to set a focus to the first input field
// say, it is named 'textField'
// but <FormControl> nor [<AbstractControl>][1] dont seem to provide
// either a method to set focus or to access the native element
// to act upon
}
Как настроить фокус на angular2 FormControl или AbstractControl?