溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

解決ASP.NET GridView中加入RadioButton不能單選

發(fā)布時(shí)間:2020-06-19 01:32:36 來源:網(wǎng)絡(luò) 閱讀:1646 作者:wangboyang 欄目:編程語言

         今天開發(fā)碰見一個(gè)問題,就是當(dāng)GridView中加入一個(gè)包含RadioButton的模板列,結(jié)果一運(yùn)行。。。。。天啊,單選按鈕可以多選了! 囧??!為了演示一下我今天的錯(cuò)誤我還是模擬一個(gè)功能場景吧,我要實(shí)現(xiàn)的功能是顯示一個(gè)包含單選按鈕的學(xué)生信息列表,選擇一行后將詳細(xì)信息顯示出來~!

          1.問題展現(xiàn)

              ①首先準(zhǔn)備一個(gè)GridView用來展示學(xué)生的基本信息與最重要的單選按鈕,代碼如下:

  1. <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false"> 
  2.         <Columns> 
  3.         <asp:TemplateField> 
  4.           <ItemTemplate> 
  5.           <asp:RadioButton ID="rbStudent" runat="server" /> 
  6.           </ItemTemplate> 
  7.         </asp:TemplateField> 
  8.  
  9.         <asp:BoundField DataField="SName" HeaderText="用戶名"  /> 
  10.         <asp:BoundField DataField="SSex" HeaderText="性別" /> 
  11.         </Columns> 
  12.         </asp:GridView> 

              ②接下來準(zhǔn)備需要綁定數(shù)據(jù)的實(shí)體,代碼如下:

  1. public class Student  
  2.   {  
  3.       public string SID { getset; }  
  4.       public string SName { getset; }  
  5.       public string SSex { getset; }  
  6.   } 

              ③初始化數(shù)據(jù),綁定GridView列表,代碼如下:

  1. protected void Page_Load(object sender, EventArgs e)  
  2.        {  
  3.            if (!IsPostBack)  
  4.            {  
  5.                this.BindGridView();  
  6.            }  
  7.        }  
  8.  
  9.        public void BindGridView()  
  10.        {  
  11.            List<Student> sList = new List<Student>()  
  12.            {  
  13.                new Student(){ SID = "s001", SName="張三", SSex="男"},  
  14.                new Student(){ SID = "s002", SName="李四", SSex="女"},  
  15.                new Student(){ SID = "s003", SName="王五", SSex="男"}  
  16.            };  
  17.  
  18.            GridView1.DataSource = sList;  
  19.            GridView1.DataBind();  
  20.        }  
           這個(gè)時(shí)候看起來沒有什么問題,但是一運(yùn)行我確發(fā)現(xiàn),單選框失去了本身的作用,如圖:

         解決ASP.NET GridView中加入RadioButton不能單選

         什么原因呢?細(xì)心的人可能會說RadioButton你沒有設(shè)置GroupName屬性所以不屬于一組,但事實(shí)我設(shè)置了該屬性后還是無效!

          2.解決思路

           ① 問題分析

              在運(yùn)行后,我右鍵查看源代碼后發(fā)現(xiàn)了這個(gè)詭異的問題,原來是GridView會自動(dòng)給input 的name屬性賦值,導(dǎo)致了每一行的name屬性都不一樣,造成了不能單選的問題,GridView生成代碼如下:

  1. <table cellspacing="0" rules="all" border="1" id="GridView1" style="border-collapse:collapse;"> 
  2.         <tr> 
  3.             <th scope="col">&nbsp;</th><th scope="col">用戶名</th><th scope="col">性別</th> 
  4.         </tr><tr> 
  5.             <td> 
  6.           <input id="GridView1_rbStudent_0" type="radio" name="GridView1$ctl02$rbStudent" value="rbStudent" /> 
  7.           </td><td>張三</td><td></td> 
  8.         </tr><tr> 
  9.             <td> 
  10.           <input id="GridView1_rbStudent_1" type="radio" name="GridView1$ctl03$rbStudent" value="rbStudent" /> 
  11.           </td><td>李四</td><td></td> 
  12.         </tr><tr> 
  13.             <td> 
  14.           <input id="GridView1_rbStudent_2" type="radio" name="GridView1$ctl04$rbStudent" value="rbStudent" /> 
  15.           </td><td>王五</td><td></td> 
  16.         </tr> 
  17.     </table> 
             可以發(fā)現(xiàn)每一個(gè)RadioButton控件的name屬性都不一樣,導(dǎo)致了不能單選的問題,那么如何解決掉這個(gè)罪魁禍?zhǔn)啄兀?/div>

              我第一個(gè)想到的辦法就是人工將name屬性改為統(tǒng)一的,那么如何改呢?有的人可能會說那很簡單啊,使用GridView的OnRowDataBound事件在行綁定的時(shí)候講RadioButton的name屬性改一下就好拉!代碼如下:

  1. protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)  
  2.        {  
  3.            if (e.Row.RowType == DataControlRowType.DataRow)  
  4.            {  
  5.                RadioButton RadioButtionRB = (RadioButton)e.Row.FindControl("rbStudent");  
  6.                RadioButtionRB.Attributes["name"] = "student";  
  7.            }  
  8.        }  
               但是運(yùn)行后,我又失望了,什么原因呢? 是因?yàn)镽adioButton在客戶端輸出的時(shí)候外面會有一層<SPAN>標(biāo)記,name屬性被加到SPAN上面了,囧死了。證據(jù)如下:
  1. <span name="student"><input id="GridView1_rbStudent_0" type="radio" name="GridView1$ctl02$rbStudent" value="rbStudent" /></span> 
  2.           </td><td>張三</td><td></td> 
  3.         </tr><tr> 
  4.             <td> 
  5.           <span name="student"><input id="GridView1_rbStudent_1" type="radio" name="GridView1$ctl03$rbStudent" value="rbStudent" /></span> 
  6.           </td><td>李四</td><td></td> 
  7.         </tr><tr> 
  8.             <td> 
  9.           <span name="student"><input id="GridView1_rbStudent_2" type="radio" name="GridView1$ctl04$rbStudent" value="rbStudent" /></span> 
  10.           </td><td>王五</td><td></td> 
             看來這種思路行不通啊,只能用JS啦,所以正題來了,我決定在數(shù)據(jù)綁定后通過JS遍歷GridView中的RadioButton將name屬性改為相同的值,行得通嗎?試試看唄!          

           ② 問題解決

               首先先來實(shí)現(xiàn)一個(gè)JS函數(shù),用來獲取遍歷GridView中的RadioButton并將其name屬性設(shè)置為一個(gè)統(tǒng)一的值,例如“myradio”,代碼如下:

  1. <script type="text/javascript">  
  2.        function SetRadioName() {  
  3.            var gv = document.getElementById("GridView1"); //獲取GridView的客戶端ID  
  4.            var myradio = gv.getElementsByTagName("input"); //獲取GridView的Inputhtml  
  5.            for (var i = 0; i < myradio.length; i++) {  
  6.                if (myradio[i].type == 'radio')//hidden  
  7.                {  
  8.                    myradio[i].setAttribute("name""myradio");  
  9.                }  
  10.            }  
  11.        }  
  12.    </script>  
              接下來在綁定數(shù)據(jù)后注冊調(diào)用這段腳本,或者將該腳本寫到頁面標(biāo)簽視圖的最下面,代碼如下:
  1. protected void Page_Load(object sender, EventArgs e)  
  2.        {  
  3.            if (!IsPostBack)  
  4.            {  
  5.                this.BindGridView();  
  6.                ScriptManager.RegisterStartupScript(thisthis.GetType(), Guid.NewGuid().ToString(),  
  7.                    "SetRadioName()"true);  
  8.            }  
  9.        }  
             運(yùn)行,成功?。。。。?!完美解決!
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI