Click here to Skip to main content
15,897,718 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
in my page one dropdown and two radio button. when i select 'unauthorized' from dropdown,two radio buttton will be disable.
how to do this.if javascript is need to use then what is the step.
Posted
Updated 14-Feb-13 2:41am
v2

1. Attach onblur or onfocusout to the dropdown.
2. When the event occurs, JavaScript method defined for the same will be raised
3. In this event, check the selected value of the dropdown
4. If the selected value is 'unauthorized' then find the two radio buttons and disable them

Try out!
 
Share this answer
 
Hi Dear

please try this

JavaScript
function DisableRadioButton() {
            var e = document.getElementById('<%=DropDownList1.ClientID %>');
            var strUser = e.options[e.selectedIndex].text;
            if (strUser == "unauthorized") {
                document.getElementById('<%=RadioButton1.ClientID %>').disabled = true;
                document.getElementById('<%=RadioButton2.ClientID %>').disabled = true;
            }
        }


add this line in html onChange="DisableRadioButton();"
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900