Radiobutton problems in table (TR for each one) - Allows everyone to be clicked

1

I have this table and these radios buttons. It turns out that I select more than one radiobutton, it does not obey the question, one selected the other 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>
    
asked by anonymous 16.05.2014 / 15:35

1 answer

3

Everyone must have the same name and the value are different for you to retrieve such a value, that is, for you to select only one of the values the name is required equals. If you are to produce another radio group put another name and so on

<table>
    <tr>
        <td>@Html.RadioButton("selecao", "Improdutivo-Reagendar")Improdutivo-Reagendar</td>
    </tr>
    <tr>
        <td>@Html.RadioButton("selecao", "Improdutivo-PDV Não Apto")Improdutivo-PDV Não Apto</td>
    </tr>
    <tr>
        <td>@Html.RadioButton("selecao", "Improdutivo-Comercial")Improdutivo-Comercial</td>
    </tr>
    <tr>
        <td>@Html.RadioButton("selecao", "Improdutivo-Infra Estrutura")Improdutivo-Infra Estrutura</td>
    </tr>
    <tr>
        <td>@Html.RadioButton("selecao", "Finalizado")Finalizado</td>
    </tr>
</table>

Reference

16.05.2014 / 15:42