To get access to NgControl in my component I create constructor:
NgControl _cd;
MyDateEditComponent(@Self() @Optional() this._cd);
I want use my component like this:
<my-date-edit [(ngModel)]="date" ngControl="date">
or
<my-date-edit [(date)]="date" ngControl="date">
Now I have error:
Assertion failed: "No value accessor for (date) or you may be missing formDirectives in your directives list."
How to fix it?