asp.net radio button grouping

后端 未结 10 499
余生分开走
余生分开走 2020-12-05 09:47

I am currently having an issue with radio buttons and grouping. I have an asp radio button within a repeater control. I have the group name attribute set to \"Customer\". Wh

10条回答
  •  一个人的身影
    2020-12-05 10:20

    I fixed it in javascript:

    $(function () {
      $("#divWithGridViewOrRepeater input:radio").attr("name", "yourGroupName");
    }); 
    

提交回复
热议问题