我有Gridview
Radiobutton Itemtemplate
。我想对整个列进行分组,只应选择一个Radiobutton
但我不想在服务器端进行postback
检查。可以用javascript完成吗?
答案 0 :(得分:1)
使用带有name
属性的HTML单选按钮对GridView ItemTemplate
中的所有单选按钮进行分组:
<input type="radio" id="TheId" name="GroupName" />
OR
如果您不想使用HTML单选按钮,则需要使用here所述的javascript / jQuery自行处理单选按钮的checked
属性。