Hi Imre,
Thanks for contacting Syncfusion support.
We have analyzed your query and tried to reproduce the reported issue in RadioButton but we are unable to reproduce the issue, as the server-side function call in post back is working properly. For your convenience, we have created a sample application based on your requirement. Please, find the sample application in attached link below and please check out the code snippet.
RadioButton.aspx
<div>
<ej:RadioButton ID="RadBtn_Male" runat="server" Text="Male" Name="Gender" Value="male" OnChange="RadBtn_Male_Change"></ej:RadioButton>
<br />
<ej:RadioButton ID="RadBtm_female" runat="server" Text="Female" Name="Gender" Value="female"></ej:RadioButton>
</div> |
RadioButton.aspx.cs
protected void RadBtn_Male_Change(object Sender, Syncfusion.JavaScript.Web.RadioButtonEventArgs e)
{
{
if (e.IsChecked)
{
RadBtm_female.Enabled = false;
}
}
} |
Regards,
Shameer Ali Baig S.