本文实例讲述了asp.net GridView中使用RadioButton单选按钮的方法。分享给大家供大家参考,具体如下:
在GridView里做单选按钮,我用了三种方法
第一种方法:在GridView的模版列里加服务器端控件RadioButton,使用js控制单选
使用模版列里加RadioButton
<script type="text/javascript"> function setRadio(nowRadio) { var myForm,objRadio; myForm=document.forms[0]; /**////alert(myForm); for(var i=0;i<myForm.length;i++) { if(myForm.elements[i].type=="radio") { objRadio=myForm.elements[i]; /**////alert(objRadio.name); if(objRadio!=nowRadio && objRadio.name.indexOf("GridView1")>-1 && objRadio.name.indexOf("RadioButton1")>-1) { alert(objRadio.name); if(objRadio.checked) { objRadio.checked=false; } } } } } </script>
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" ShowHeader="False" OnRowDataBound="GridView1_RowDataBound"> <Columns> <asp:TemplateField> <ItemTemplate> <asp:RadioButton ID="RadioButton1" runat="server"/> </ItemTemplate> </asp:TemplateField> </Columns> </asp:GridView> <asp:Button ID="Button1" runat="server" Text="取选项" OnClick="Button1_Click"/> <asp:Label ID="Label1" runat="server"></asp:Label>
前面那段代码就是控制单选的js,在这里,我使用了遍历页面上所有控件的方法,加入了条件,就是红色那个判断,只控制GridView1里id是RadioButton1生成的单选按钮
这种办法需要绑定客户端事件
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { //给每个RadioButton1绑定setRadio事件 try { ((RadioButton)e.Row.FindControl("RadioButton1")).Attributes.Add("onclick", "setRadio(this)"); } catch (Exception) { } }
取值的方法就是遍历GridView的每一行,取选中的控件
protected void Button1_Click(object sender, EventArgs e) { //使用模版列里加RadioButton Label1.Text = ""; foreach (GridViewRow gvr in GridView1.Rows) { try { if (((RadioButton)gvr.FindControl("RadioButton1")).Checked) { Label1.Text = "当前选中第" + Convert.ToString(gvr.RowIndex + 1) + "个"; break; } } catch (Exception) { } } if (Label1.Text.Length == 0) { Label1.Text = "没有选中项"; } }
这种方法,在客户端和服务器端都使用了遍历
第二种方法:在GridView的模版列里,加html控件Radio
使用模版列里加html控件Radio
<asp:GridView ID="GridView2" runat="server" AutoGenerateColumns="False" ShowHeader="False"> <Columns> <asp:TemplateField> <ItemTemplate> <input type="radio" name="myRadio" value='<%# Container.DataItemIndex.ToString() %>'> </ItemTemplate> </asp:TemplateField> </Columns> </asp:GridView> <asp:Button ID="Button2" runat="server" Text="取选项" OnClick="Button2_Click" /> <asp:Label ID="Label2" runat="server"></asp:Label>
<script type="text/javascript"> function setNowRadio(v) { //alert(v); var myForm,objRadio; myForm=document.forms[0]; for(var i=0;i<myForm.length;i++) { if(myForm.elements[i].type=="radio") { objRadio=myForm.elements[i]; //alert(objRadio.name); //alert(objRadio.value); if(objRadio.value==v) { objRadio.checked=true; } } } } <asp:Literal ID="jsLiteral" runat="server"></asp:Literal> </script>
前面那句<input type="radio" name="myRadio" value='<%# Container.DataItemIndex.ToString() %>'>,我在他的value值里,绑定的是当前行,因为一般在GridView里操作的时候,我们经常要用的是选中的行号,有了行号,我们就可以取GridView的DataKeys了
因为这里使用的是html控件,所以取数据的时候,要使用Request.Form
protected void Button2_Click(object sender, EventArgs e) { //使用模版列里加html控件Radio if (Request.Form["myRadio"] == null) { Label2.Text = "没有选中项"; jsLiteral.Text = "";//***** } else { string value; value = Request.Form["myRadio"].ToString(); Label2.Text = "当前选中第" + Convert.ToString(Convert.ToInt16(value) + 1) + "个"; jsLiteral.Text = "setNowRadio('" + value + "');";//***** } }
这种方法自己,是不用遍历控件就可以完成任务的
就是因为使用的是客户端控件,所以选中的值不可以写入viewstate里面,如果有页面回传,这个值就不可以保留了,如果要在页面回传后还保留这个值,就要使用js,看注释里有****的那段代码,我选设置了一个setNowRadio(),然后呢加入Literal控件
在每一次回传的时候,嗯,因为我这里只有取值需要回传,所以我写在了取值那里,其实是应该写在Page_Load事件里的,加上if (IsPostBack)的判断,就是每次回传,就要取这个myRadio的值,执行函数,重新选择已经选中的项
在这个setNowRadio里,又用到了遍历,就是他比第一种方法遍历的东西少
第三种方法:直接使用RadioButtonList模拟表格
使用RadioButtonList
<asp:RadioButtonList ID="RadioButtonList1" runat="server"> </asp:RadioButtonList> <asp:Button ID="Button3" runat="server" Text="取选项" OnClick="Button3_Click" /> <asp:Label ID="Label3" runat="server"></asp:Label>
我在这里模拟的是一个像论坛里,显示投票页面的东西,就是给出一个单选框,后面写选项内容,然后是一个图片,再显示有几票
private void SetListItem(RadioButtonList rbt) { //给RadioButtonList加几个ListItem,用来测试数据 string item, space, info; int per; for (int i = 0; i < 3; i++) { per = 5; item = "<div style='float:left; width:300px;'> 第 " + Convert.ToString(i + 1) + " 项</div>"; space = Convert.ToString(per * 3.50); space = "<div style='float:left; background-color:MistyRose;border-color:Silver;border-width:1px;border-style:solid; width:" + space + "px;'></div>"; info = "<div style='float:left; width:70px;'> " + per.ToString() + "% 5票</div>"; info = item + space + info; RadioButtonList1.Items.Add(new ListItem(info, "")); } }
这种方法解决了单选的问题,解决了回传的问题,因为RadioButtonList本来就是生成一组Radio控件的,就是,在模拟的时候很麻烦,我这里使用了很多div+css,就是,我还是没有办法做到让生成的radio和选项放在同一行上
下面是生成的html代码里的一行:
<tr> <td> <input id="RadioButtonList1_0" type="radio" name="RadioButtonList1" value="" /> <label for="RadioButtonList1_0"> <div style='float:left; width:300px;'> 第 1 项</div> <div style='float:left; background-color:MistyRose;border-color:Silver;border-width:1px;border-style:solid; width:17.5px;'></div> <div style='float:left; width:70px;'> 5% 5票</div> </label> </td> </tr>
div是块级元素,使用了float:left,也不可以让他们和radio在同一行上,如果可以把页面的宽度控制,比如确定是788px,那我们就可以使用float:right; text-align:left;来控制,就是很多时候,是不允许用px控制页面宽度的
另外的一个办法是直接写代码
protected void rbtnSel_CheckedChanged(object sender, EventArgs e) { for (int i = 0; i < this.GridView1.Rows.Count; i++) { ((RadioButton)this.GridView1.Rows[i].FindControl("rbtnSel")).Checked = false; } ((RadioButton)sender).Checked = true;//经典 }
更多关于asp.net相关内容感兴趣的读者可查看本站专题:《asp.net操作json技巧总结》、《asp.net字符串操作技巧汇总》、《asp.net操作XML技巧总结》、《asp.net文件操作技巧汇总》、《asp.net ajax技巧总结专题》及《asp.net缓存操作技巧总结》。
希望本文所述对大家asp.net程序设计有所帮助。
主要内容:本节引言:,1.基本用法与事件处理:,2.自定义点击效果,3.改变文字与选择框的相对位置,4.修改文字与选择框的距离,本节小结:本节引言: 本节给大家带来的是Andoird基本UI控件中的RadioButton和Checkbox; 先说下本节要讲解的内容是:RadioButton和Checkbox的 1.基本用法 2.事件处理; 3.自定义点击效果; 4.改变文字与选择框的相对位置; 5.修改文字与选择框的距离 其实这两个控件有很多地方都是类似的,除了单选和多选,事件处理,其他的都是类
单选按钮通常表示组中用户可用的许多可选按钮之一。 每个按钮,wx.RadioButton类的对象在圆形按钮旁边都有一个文本标签。 为了创建一组可相互选择的按钮,第一个wxRadioButton对象的style参数设置为wx.RB_GROUP。 后续按钮对象将添加到组中。 wxPython API也包含wx.RadioBox类。 它的对象为组提供边框和标签。 组中的按钮可以水平或垂直排列。 wx.R
我想创建一个单选按钮风格的投票系统使用的图标在Flutter(Dart),看起来像这样:投票图标 这个概念很简单:页面将显示一部电影,然后用户可以使用上面的图标按钮对该电影进行投票。当进行投票时,图标将变为红色,影片将添加到数组中。 我正在纠结的棘手部分是: 更改选定后图标的颜色 确保其他图标保持黑色 如果用户选择了其他选项,则将其他图标更改为黑色 提前道谢!
包含RadioGroup的碎片活动,有5个RadioButton5和一个Button,RadioButton5有一个EditText。 onClicking button选定的单选按钮状态应保存在SharedPreferences中,并在启动活动时加载
我已经搜索了前面的一些问题,并没有能够纠正--我是一个完全的新手,所以请原谅我的无知...尝试使用以下方法选择页面上的第三个“单选”按钮: 结果是: “消息:没有此类元素:找不到元素:{”method“:”XPath“,”Selector“:”//[@id=“Wizard_Tabs”]/div/div[1]/div/ul/li[3]/input“}”
问题内容: 我正在尝试从3个按钮的列表中进行选择,但是找不到选择它们的方法。以下是我正在使用的HTML。 我可以使用以下代码找到它: 输出:SRF,COM,MOT 但我想选择ChoiceOne。(单击它)我该怎么做? 问题答案: 使用CSS选择器或XPath 直接按属性选择,然后单击它。 更正(但是OP应该学习如何在文档中查找) 在Python绑定中,它不存在,称为。一个人应该能够查看异常消息并在
此输出:SRF、COM、MOT 但我想选一个。(点击它)我怎么做?