OnCheckedChanged only fire at second click

65 Views Asked by At

I have two radio buttons that will determine the min value of the range validator of a textbox. So the radio buttons work well (resetting the min value on every CheckedChanged), except when the textbox display error message like "enter min value xxx", then the radio button has to be clicked twice (which is buggy) only it will trigger the vb code. Can someone help me with this? Thank you!

The code for RadioButtons:

<asp:RadioButton runat="server" ID="rbSameT" Text="SameT" GroupName="rbGroupT" Checked="true" AutoPostBack="true" OnCheckedChanged="rbSameT_CheckedChanged"/>
<asp:RadioButton runat="server" ID="rbDiffT" Text="DiffT" GroupName="rbGroupT" AutoPostBack="true" OnCheckedChanged="rbDiffT_CheckedChanged"/>
            

The code behind for the RadioButtons:

Protected Sub rbSameT_CheckedChanged(ByVal sender As Object, ByVal e As EventArgs) Handles rbSameT.CheckedChanged
    If sender IsNot Nothing And e IsNot Nothing Then
        ResetValidators(False)
    End If
End Sub

Protected Sub rbDiffT_CheckedChanged(ByVal sender As Object, ByVal e As EventArgs) Handles rbDiffT.CheckedChanged
    ResetValidators(True)
End Sub
1

There are 1 best solutions below

0
On

Try removing the Checked="true" and set EnableViewState="True"

<asp:RadioButton runat="server" ID="rbSameT" Text="SameT" GroupName="rbGroupT" 
 AutoPostBack="true" OnCheckedChanged="rbSameT_CheckedChanged" EnableViewState="True"/>

<asp:RadioButton runat="server" ID="rbDiffT" Text="DiffT" GroupName="rbGroupT" 
 AutoPostBack="true" OnCheckedChanged="rbDiffT_CheckedChanged" EnableViewState="True"/>