Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8589327
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:01:41+00:00 2026-06-11T23:01:41+00:00

I have an MVC3 application that I have a view defined to have the

  • 0

I have an MVC3 application that I have a view defined to have the possibility of passing values and setting the SelectedItem value.

List<SelectListItem> items = new SelectList(db.BILLING_COUNTRY, "ISO_Code_BillingCountry", "CountryName", Country).AsParallel().ToList();
        items.Insert(0, (new SelectListItem { Text = "Select Your Country", Value = "0" }));
        ViewBag.Countries = items;

I am setting the disabled = “disabled” attribute on the dropdownlist if a ViewBag.EnableDropDowns is false or not set.

@{ object displayMode = (ViewBag.EnableDropDowns) ? null : new { disabled = "disabled"     };
           @Html.DropDownList("Countries", null, new { disabled = displayMode, onchange     = "LoadItems()" } )
        }

I set the ViewBag.EnableDropDowns to true, it correctly sets all the values in the drop down list but they are disabled instead of enabled.

What is wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T23:01:43+00:00Added an answer on June 11, 2026 at 11:01 pm

    Be careful with the dictionary declaration. It has to beDictionary<string, object>() otherwise you will face run time issues.

    I have to disable the listbox based upon a condition.

    @{
    var sourceListOptions = new Dictionary<string, object>();
    sourceListOptions.Add("style", "Height: 250px; width: 225px;");
    if (Model.SourceColumns.Count() == Model.ImportMappings.Count())
    {
        sourceListOptions.Add("disabled", "disabled");
    }
    

    }

    @Html.ListBox("SourceColumns", Model.SourceColumns, sourceListOptions)
    

    or

    @Html.DropDownList("SourceColumns", Model.SourceColumns, sourceListOptions)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

MVC3 VB.NET Razor view Application... I have a view that uses a for each
I have an MVC3 application with Razor and I created a View that inside
In my MVC3 application, I have a view model that I Json encode so
I have an ASP.NET MVC3 application that I have built and it has two
I have a ASP.NET MVC3 application that handles time-consuming processes (copying a large file
i have created an mvc3 web application that uses forms based authentication. one part
In my MVC3 application, I have a queries class specific to each controller that
I have a View in my MVC 3 application that lets the user enter
I have lots of forms in my MVC3 application that require the user to
I have an MVC3 application that I am implementing pjax into . Everything is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.