You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.content_form = new FormGroup({
//you can also put other FormControls that use formControlName directly with this here
content_tags: new FormControl([])
});
onTagsUpdate(event){
this.content_form.get("content_tags").setValue(event);
}
then you can just set the (onChange) handler to onTagsUpdate($event)
How can i use this plugin with formcontrolname
The text was updated successfully, but these errors were encountered: