0

我有一个内置代码的表单。

我想要做的是检测单选按钮何时被选中,以及它何时被选中。

我有以下

RadioButton radio = new RadioButton() { ClientIDMode = System.Web.UI.ClientIDMode.Static, AutoPostBack=true, ID = "rbOther" + testEquipment.Id, GroupName = "grp" + testEquipment.Id, Checked = false };
radio.CheckedChanged += new EventHandler(radio_CheckedChanged);

testEquipment 是存储一些数据的对象的实例。

tdBrandName.Controls.Add(new TextBox() { ClientIDMode = System.Web.UI.ClientIDMode.Static, ID = "txtBrandName" + testEquipment.Id, Text = serviceStationTestEquipment != null ? serviceStationTestEquipment.BrandName : string.Empty, Width = new Unit(300), Enabled = serviceStationTestEquipment != null ? serviceStationTestEquipment.Other : false });
tdBrandName.Controls.Add(new RequiredFieldValidator() { Display = ValidatorDisplay.Dynamic, ControlToValidate = "txtBrandName" + testEquipment.Id, Text = "Required field", ErrorMessage = "Test Equipment Tab: Field is required", CssClass = "validationerror", Enabled = serviceStationTestEquipment != null ? serviceStationTestEquipment.Other : false, ID = ID = "reqValidator" + testEquipment.Id });

然后,我想在单击单选按钮时禁用文本框和 requiredfieldvalidator。有三个即。无,默认,其他

选择其他类型时,文本框必须与所需的字段验证器一起启用。

void radio_CheckedChanged(object sender, EventArgs e)
    {
        RadioButton check = sender as RadioButton;

        if (check == null)
            return;

        string Id = check.ID.Replace("rbOther", "");

        TextBox text = check.Parent.Parent.FindControl(string.Format("txtBrandName{0}", Id)) as TextBox;

        text.Enabled = check.Checked;

        RequiredFieldValidator validator = check.Parent.Parent.FindControl(string.Format("reqValidator{0}", Id)) as RequiredFieldValidator;
        validator.Enabled = check.Checked;
    }
4

2 回答 2

1

如果你习惯使用 jQuery,那么你可以试试这个:

<script src="Scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
<script>
 $(function () {
     $("input[name$='grp']").click(function () {
         var value = $(this).val();
         id = value.replace("rbOther", "");
         $("#txtBrandName" + id).attr("disabled", "disabled");
         ValidatorEnable(document.getElementById("reqValidator" + id), false);
        //Write your code HERE
     });
 });
</script>
于 2012-06-06T14:42:06.537 回答
1

这是示例案例。我在单选按钮列表中有 3 个项目,根据选择的值,我希望在标签上显示一条消息。

<asp:RadioButtonList ID="rbtnType" runat="server" RepeatDirection="Vertical">
<asp:ListItem Value="C">Contract </asp:ListItem>
<asp:ListItem Value="I">Independent </asp:ListItem>
<asp:ListItem Value="O">OutSource </asp:ListItem>
</asp:RadioButtonList>
 <br />
<asp:Label ID="lblLaborType" runat="server" ></asp:Label>

<script type="text/javascript">
 $(document).ready(function () {
    $("#<%=rbtnType.ClientID%>").change(function () {
        var rbvalue = $("input[@name=<%=rbtnType.ClientID%>]:radio:checked").val();
        if (rbvalue == "C") {           
            $('#<%=lblLaborType.ClientID %>').html('Do this');
        }
        else if (rbvalue == "I") {
            $('#<%=lblLaborType.ClientID %>').html('else this');
        }
        else if (rbvalue == "O") {
            $('#<%=lblLaborType.ClientID %>').html('or else this');
        }
    });
});  </script>
于 2012-06-07T07:15:31.497 回答