I have 3 tables on a page. Each of them contain two table rows.

The first holds a RadioButton. The second is set to display: none. I need to second to display when the RadioButton in that particular table was selected.

My HTML:

<table class="tableClass" style="width: 98%">   
    <tr>
       <td>
           <input type="radio" id="rbResource" onclick="radio_Click()" class="radioButton"       runat="server" />
       </td>  
    </tr>
    <tr class="displaySelection" style="display: none">
       <td>
           <span>Test</span>
       </td>
    </tr>
</table>

I'm not sure how to form my jquery int the radio_Click() function to get what I'm looking for. Everything I've tried so far, displays all three of each table regardless of which Radiobutton was selected.

Thanks

link|improve this question

64% accept rate
feedback

2 Answers

up vote 1 down vote accepted

If I understand correctly, you need only 1 row to be visible each time, depending on the radiobutton pressed. To begin with, you should use name="rbResource" (rather than id) to group the radiobuttons together. Then you can use something like this:

$(".radioButton").click( function(evt) {
    $(".radioButton").each( function( index, obj ) {
        var checked = $(obj).attr('checked')==true;
        var row = $(obj).closest('tr').next();
        if ( checked ) row.show();
        else row.hide();
    });
});
link|improve this answer
This doesn't work entirely. Debugging it shows that var checked = $(obj).attr('checked') == 'checked'; returns as false every time. – Melanie Jan 19 at 9:15
I changed the == 'checked' part to == true and it works perfectly. Thanks! – Melanie Jan 19 at 9:17
feedback
$('input:radio').on('click', function(){
   $(this).closest('tr').next().show();
});

OR,

$('input:radio').click(function(){
   $(this).closest('tr').next('tr').show();
});
link|improve this answer
@Melanie remove the onclick() function – thecodeparadox Jan 19 at 8:42
This works but the problem is that if I select one radiobutton, then another, then both rows still display. Will try and adapt xpapad's code to accommodate this. – Melanie Jan 19 at 9:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.