What are the events called in Angular 2 when a radio button is selected or unselected?
Is it something like this:
<input type="radio" (select)="selected()" (unselect)="unselected()" />
When I click on a radio button in a group, will it trigger selected()
for the new selection and unselected()
for the previous selection?