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 7837443
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T14:38:21+00:00 2026-06-02T14:38:21+00:00

I have the following code to populate a DropDownList var list = new Dictionary<string,

  • 0

I have the following code to populate a DropDownList

var list = new Dictionary<string, decimal>();
list.Add("1.000.000", 1000000m);
list.Add("500.000", 500000m);
list.Add("5.000", 5000m);
viewModel.MyValue = 500000.00m; //of type decimal?
viewModel.MyList = new SelectList(list, "Value", "Key", viewModel.MyValue);

While in the Html

@Html.DropDownListFor(model => model.MyValue, Model.MyList, "select value")

All works fine (the selected value is passed to the controller and saved regularly), the only thing not working is the selected value. The one I pass is not automatically selected in the dropdown. Am I missing something obvious?

  • 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-02T14:38:23+00:00Added an answer on June 2, 2026 at 2:38 pm

    I solved the problem.
    The framework while doing the ToString() in the SelectList was unable to match 500000.00 with 500000 (I put the wrong value in my question, sorry for the typo. updated)

    Using a simple froeach you can see what happen

      viewModel.MyList = new SelectList(list, "Value", "Key", viewModel.MyValue);
      foreach (var item in viewModel.MyList)
      {
        var p = viewModel.MyValue.ToString();
        if (item.Value == p) //here 500000 != 500000.00
        {
          item.Selected = true;
          break;
        }
      }
    

    So I solve the problem simply doing

    var list = new Dictionary<string, decimal>();
    list.Add("1.000.000", 1000000.00m);
    list.Add("500.000", 500000.00m);
    list.Add("5.000", 5000.00m);
    

    Thanks all for the help anyway

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following JQuery code in an attempt to populate a dropdown list:
I want to populate a list from my database. I have the following code:
I have the following code to populate an array of strings, but every time
I have following code class User attr_accessor :name end u = User.new u.name =
I have the following code which is meant to populate a dropdown with a
I have the following code to launch a dilog, do ajax and populate it
I have the following code: var entityConnection = (System.Data.EntityClient.EntityConnection)c.Connection; DbConnection conn = entityConnection.StoreConnection; ConnectionState
I have an InfoListAdapter that uses the following code to populate views in the
I have the following code, which works fine if you just want to populate
I have following code in my MVC2 view: <tr class=edit style=display:none> <td> <%= Html.DropDownList(drpFields,

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.