Click here to Skip to main content
15,888,224 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how to disable cascading drop down after binding.
suppose i have 3 drop downs and i have binded data to it,now am selecting particular values to it.now i need to disable all selections to it.
Posted
Updated 1-Mar-13 18:43pm
v2

1 solution

XML
issue solved with code
function Level1Populated() {
$('#<%= ddlZones.ClientID %>').attr('disabled', 'disabled');
}
function pageLoad(sender, args) {
$find("ddlzo").add_populated(Level1Populated);
}
 
Share this answer
 

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