ionic-tags-input icon indicating copy to clipboard operation
ionic-tags-input copied to clipboard

Formcontrol angular2

Open netwrkx opened this issue 7 years ago • 2 comments

How can i use this plugin with formcontrolname

netwrkx avatar Feb 19 '18 16:02 netwrkx

+1

larpo1 avatar Mar 29 '18 15:03 larpo1

It can work like this:

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)

max-in-bc avatar Aug 07 '18 20:08 max-in-bc