Click here to Skip to main content
15,918,742 members

Comments by Adnan Okko (Top 2 by date)

Adnan Okko 15-Dec-17 9:34am View    
@F-ES, I used this function to disable the dropdownlistfor when I toggle for editorfor:

function toggler() {
$("#DDLF, #EF").toggle("slow", function () {
$('#DDLF').attr('disabled', 'disabled');
});
}

But it didn't work. Can you provide an example of what you suggested?
Adnan Okko 15-Dec-17 9:30am View    
Thank you @Laxmidhar. Can you provide a code simple for what you mean exactly?