The main problem is that you select the radio button, as the radioobuttonlist identifier refers to the table that wraps your radio buttons. Once you succeed, this is just a case of getting the fields that you want to update. I would suggest assigning a <tr> class to make this a little easier:
<tr class="mainRow"> <td> <span>Random question here?</span> </td> <td> ....
and then using something like this
<script> $(document).ready(function () { $('.radioList input').click(function () { var selectedValue = $(this).val(); $(this).closest('.mainRow').find('.someScore').val(selectedValue); var currentTotal = 0; $('.someScore').each(function () { if (!isNaN($(this).val())) { currentTotal += Number($(this).val()); } }); $('#<%=txtSomeTotal.ClientID %>').val(currentTotal); }); }); </script>
source share