In .html file
Note: list consist of increment number like 1,2,3,4,5,6,7,8,9,.....
In .TS file setRadioOption(event: any) {
for(let i=0;i<this.singleChoiceOptionsList.length;i++)
{
this.ChoiceOptionsList[i].isCorrect=false;
if((i+1)==event.target.id)
{
this.ChoiceOptionsList[i].isCorrect=true;
}
}
}
Aucun commentaire:
Enregistrer un commentaire