html5 - "No provider for RadioControlRegistry" in angular 2 what provider should I add? -


what provider should add in provider component?

<div class="radio"> <input let match id="male" type="radio" name="gender" value="true" [(ngmodel)]="ismatching"  (click)="ismatching(match.value)" > 

here's console output: error message in console.

you need add formsmodule imports

@ngmodule({   imports: [commonmodule, formsmodule]   ... }) class mymodule {} 

Comments

Popular posts from this blog

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

mapreduce - Resource manager does not transit to active state from standby -

serialization - Convert Any type in scala to Array[Byte] and back -