在GridView中添加模版加个RadioButton控件..如何让它实现单选

 我来答
maoxiaoling959
2011-10-25 · 超过39用户采纳过TA的回答
知道小有建树答主
回答量:78
采纳率:0%
帮助的人:96万
展开全部
将RadioButton 的group属性设置为相同名称
更多追问追答
追问
试过有用就不会提问了
追答
那好吧~!你试试以下几种办法

二:
protected void gvWorkPlanList_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
RadioButton rb = (RadioButton)e.Row.FindControl("radButtonControl");
if (rb != null)
rb.Attributes.Add("onclick", "onRadiobuttonClick('" + this.gvWorkPlanList.ClientID + "','" + rb.ClientID + "')");
}
}

三:
function onRadiobuttonClick(gvControlID,selectedControlId)
{
var inputs = document.getElementById(gvControlID).getElementsByTagName("input");
for(var i=0; i <inputs.length; i++)
{
if(inputs[i].type=="radio")
{
if(inputs[i].id==selectedControlId)
inputs[i].checked = true;
else
inputs[i].checked = false;

}
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式