I am trying to make a control where we can enter several players with a tag and their score.
But when we click on the AddPlayer button, I create a player, then I need to reset the default form control value.
I tried a lot of things, but nothing works ... it never changes the meaning of the view.
Here is the code:
addPlayer(form: ControlGroup) {
var player = new Player();
player.tag = form.value.tag;
player.name = form.value.name;
player.score = form.value.score;
form.value = null;
form.value.tag = null;
form.value.tag = '';
this.playerService.addPlayer(player.tag, player.name, player.score);
this.newplayer.next(player);
}
Here is the html
<form (submit)="addPlayer(playerForm)" [ng-form-model]="playerForm">
<div class="form-group" [class.has-error]="!playerForm.find('tag').valid && playerForm.find('tag').touched">
<div class="col-md-3 text-right">
<label for="tag">Tag: </label>
</div>
<input type="text" id="tag" #tag="form" [ng-form-control]="playerForm.controls['tag']" placeholder="Tag"/>
<span *ng-if="tag.control.hasError('required') && !tag.control.pristine">Tag is required</span>
</div>
<div class="form-group" [class.has-error]="!playerForm.find('name').valid && playerForm.find('name').touched">
<div class="col-md-3 text-right">
<label for="name">Player Name: </label>
</div>
<input type="text" id="name" #name="form" [ng-form-control]="playerForm.controls['name']" placeholder="Player Name" />
<span *ng-if="name.control.hasError('required') && !name.control.pristine">Player Name is required</span>
</div>
<div class="form-group" [class.has-error]="!playerForm.find('score').valid && playerForm.find('score').touched">
<div class="col-md-3 text-right">
<label for="score">Score: </label>
</div>
<input type="number" id="score" #score="form" [ng-form-control]="playerForm.controls['score']" value="0" min="0" max="200" />
<span *ng-if="score.control.hasError('required') && !score.control.pristine">Score is required</span>
</div>
<button type="submit" class="btn btn-primary">
Add Player
</button>
</form>
So, how do I reset the value of the control?
Vince source
share