ASP.NET GridView中加入RadioButton不能單選的解決方案_實用技巧

來源:互聯網
上載者:User

 今天開發碰見一個問題,就是當GridView中加入一個包含RadioButton的模板列,結果一運行。。。。。天啊,選項按鈕可以多選了! 囧啊!為了示範一下我今天的錯誤我還是類比一個功能情境吧,我要實現的功能是顯示一個包含選項按鈕的學生資訊列表,選擇一行後將詳細資料顯示出來~!

1.問題展現

①首先準備一個GridView用來展示學生的基本資料與最重要的選項按鈕,代碼如下:

 <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false">    <Columns>    <asp:TemplateField>     <ItemTemplate>     <asp:RadioButton ID="rbStudent" runat="server" />     </ItemTemplate>    </asp:TemplateField>    <asp:BoundField DataField="SName" HeaderText="使用者名稱" />    <asp:BoundField DataField="SSex" HeaderText="性別" />    </Columns>    </asp:GridView>

②接下來準備需要綁定資料的實體,代碼如下: 

public class Student  {    public string SID { get; set; }    public string SName { get; set; }    public string SSex { get; set; }  }

③初始化資料,綁定GridView列表,代碼如下:

protected void Page_Load(object sender, EventArgs e)    {      if (!IsPostBack)      {        this.BindGridView();      }    }    public void BindGridView()    {      List<Student> sList = new List<Student>()      {        new Student(){ SID = "s001", SName="張三", SSex="男"},        new Student(){ SID = "s002", SName="李四", SSex="女"},        new Student(){ SID = "s003", SName="王五", SSex="男"}      };      GridView1.DataSource = sList;      GridView1.DataBind();    }

這個時候看起來沒有什麼問題,但是一運行我確發現,單選框失去了本身的作用,如圖:

        

什麼原因呢?細心的人可能會說RadioButton你沒有設定GroupName屬性所以不屬於一組,但事實我設定了該屬性後還是無效!

2.解決思路

① 問題分析

在運行後,我右鍵查看原始碼後發現了這個詭異的問題,原來是GridView會自動給input 的name屬性賦值,導致了每一行的name屬性都不一樣,造成了不能單選的問題,GridView產生代碼如下:

<table cellspacing="0" rules="all" border="1" id="GridView1" style="border-collapse:collapse;">    <tr>      <th scope="col"> </th><th scope="col">使用者名稱</th><th scope="col">性別</th>    </tr><tr>      <td>     <input id="GridView1_rbStudent_0" type="radio" name="GridView1$ctl02$rbStudent" value="rbStudent" />     </td><td>張三</td><td>男</td>    </tr><tr>      <td>     <input id="GridView1_rbStudent_1" type="radio" name="GridView1$ctl03$rbStudent" value="rbStudent" />     </td><td>李四</td><td>女</td>    </tr><tr>      <td>     <input id="GridView1_rbStudent_2" type="radio" name="GridView1$ctl04$rbStudent" value="rbStudent" />     </td><td>王五</td><td>男</td>    </tr>  </table>

可以發現每一個RadioButton控制項的name屬性都不一樣,導致了不能單選的問題,那麼如何解決掉這個罪魁禍首呢?

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

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)    {      if (e.Row.RowType == DataControlRowType.DataRow)      {        RadioButton RadioButtionRB = (RadioButton)e.Row.FindControl("rbStudent");        RadioButtionRB.Attributes["name"] = "student";      }    }

但是運行後,我又失望了,什麼原因呢? 是因為RadioButton在用戶端輸出的時候外面會有一層<SPAN>標記,name屬性被加到SPAN上面了,囧死了。證據如下:

<span name="student"><input id="GridView1_rbStudent_0" type="radio" name="GridView1$ctl02$rbStudent" value="rbStudent" /></span>     </td><td>張三</td><td>男</td>    </tr><tr>      <td>     <span name="student"><input id="GridView1_rbStudent_1" type="radio" name="GridView1$ctl03$rbStudent" value="rbStudent" /></span>     </td><td>李四</td><td>女</td>    </tr><tr>      <td>     <span name="student"><input id="GridView1_rbStudent_2" type="radio" name="GridView1$ctl04$rbStudent" value="rbStudent" /></span>     </td><td>王五</td><td>男</td>

看來這種思路行不通啊,只能用JS啦,所以正題來了,我決定在資料繫結後通過JS遍曆GridView中的RadioButton將name屬性改為相同的值,行得通嗎?試試看唄!         
② 問題解決
首先先來實現一個JS函數,用來擷取遍曆GridView中的RadioButton並將其name屬性設定為一個統一的值,例如“myradio”,代碼如下:

 <script type="text/javascript">    function SetRadioName() {      var gv = document.getElementById("GridView1"); //擷取GridView的用戶端ID      var myradio = gv.getElementsByTagName("input"); //擷取GridView的Inputhtml      for (var i = 0; i < myradio.length; i++) {        if (myradio[i].type == 'radio')//hidden        {          myradio[i].setAttribute("name", "myradio");        }      }    }  </script>

接下來在綁定資料後註冊調用這段指令碼,或者將該指令碼寫到頁面標籤視圖的最下面,代碼如下:

 protected void Page_Load(object sender, EventArgs e)    {      if (!IsPostBack)      {        this.BindGridView();        ScriptManager.RegisterStartupScript(this, this.GetType(), Guid.NewGuid().ToString(),          "SetRadioName()", true);      }    }

問題解決了!

經過一番努力問題終於得到完美解決,整個問題分析思路清晰,希望可以真正協助到親們解決類似問題,有好的想法,歡迎大家一起探討

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.