Code
<asp:RadioButtonList ID="rdStatus" onclick="javacript:display();" runat="server" RepeatDirection="Vertical">
<asp:ListItem Text="Temporary Waiver" Value="T" Selected="True"></asp:ListItem>
<asp:ListItem Text="Never Expires" Value="P"></asp:ListItem>
<asp:ListItem Text="Expires after the close of:" Value="W"></asp:ListItem>
</asp:RadioButtonList>
My Problem:
On disable radio buttons add class as "disabled" to radio buttons & better way to use jQuery insted of javascript as bellow
jQuery("#rdStatus").click(function()`{
if(jQuery(this).hasClass("disabled"))
return false;
continue with you code here.............
}`);