1
I have this table and these radios Buttons. I happen to select more than one radiobutton, it does not obey the question, from one selected the other does not.
<table>
<tr>
<td>@Html.RadioButton("Improdutivo-Reagendar","Improdutivo-Reagendar")Improdutivo-Reagendar</td>
</tr>
<tr>
<td>@Html.RadioButton("Improdutivo-PDV Não Apto","Improdutivo-PDV Não Apto")Improdutivo-PDV Não Apto</td>
</tr>
<tr>
<td>@Html.RadioButton("Improdutivo-Comercial","Improdutivo-Comercial")Improdutivo-Comercial</td>
</tr>
<tr>
<td>@Html.RadioButton("Improdutivo-Infra Estrutura","Improdutivo-Infra Estrutura")Improdutivo-Infra Estrutura</td>
</tr>
<tr>
<td>@Html.RadioButton("Finalizado","Finalizado")Finalizado</td>
</tr>
</table>
you can explain a little better what is happening, maybe add something similar print ?
– Otto
They must have the same name and values representing each.
– user6026
Otto, I can, for example, click and check them all at once. As for Fccdias, how I assign a name to Radiobutton created by Helpers(@Html.Radiobutton)?
– pnet