vote up 0 vote down star

I have a dropdownlist to fill in server-side an some of the options that will filled to the this list need to be disabled. Practically I know that I need to add a disabled='disabled' attribute.

That is the first way I tried.

Dim avListItems = activityVersions.Select(Function(av) New With {.Text = av.Text, .Value = av.Value, .Disabled=av.HasQuota}).ToList()

But this disables all options because in HTML disabled attribute do not need a value if there is a disabled attribute then it disables the option in any case. But I need a solution which could add disabled attribute for the options, which has no quota and other should be enabled.

Do you have any suggestion?

flag

71% accept rate
Show please the code where you insert this data into the DDL. – Developer Art Aug 31 at 7:48

2 Answers

vote up 2 vote down check

It is not possible to disable individual items in a dropdown list. See MSDN.

Perhaps rather apply some validation to notify the user if an invalid option has been selected, or remove those items from the list entirely.

link|flag
vote up 0 vote down

thanks for tut, but not success.

Tap hop here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.