angular2-tinymce
angular2-tinymce copied to clipboard
No value accessor for form control with unspecified name attribute
Anyone know why I am getting this error:
"No value accessor for form control with unspecified name attribute"
from this stmt:
<app-tinymce [(ngModel)]='editModel.value'>
You need to specify a name tag with angular2+ like that :
<app-tinymce name="myName" [(ngModel)]='editModel.value'>