Home » Development » How to disable a DropDownList or ComboBox using JavaScript

How to disable a DropDownList or ComboBox using JavaScript

It may be tricky depending on the situation. Here is what it works in my case:

var objectListCountry = $find("<%= listCountry.ClientID %>");
objectListCountry.set_enabled(false);

Leave a Comment