I have a dropdownlist that will not display the selected value correctly. It does have the correct elements in it, has the correct text and values being used but there just doesn't seem to be a way to make it actually select the correct value.

What I've got is:

public class StateViewModel {
    public string Name { get; set; }
    public string Abbr { get; set; }
}

public class ChangeAddressViewModel {
    //edited down to what's needed
    public StateViewModel StateViewModel { get; set; }
    public IEnumerable<StateViewModel> StateViewModels { get; set; }
}

What I've tried:

@Html.DropDownListFor(model => model.StateViewModel
    , Model.StateViewModels.Select(x => new SelectListItem {
         Text = x.Name,
         Value = x.Abbr,   
         Selected = x.Abbr == Model.StateViewModel.Abbr
         })
    , @Resource.SelectState)

//i've stepped through the lambda above and the expression 
//x.Abbr == Model.StateViewModel.Abbr 
//did evaluate to true for one of the iterations

@Html.DropDownListFor(model => model.StateViewModel
    , new SelectList(Model.StateViewModels
    , "Abbr"
    , "Name"
    , Model.StateViewModel.Abbr)
    , @Resource.SelectState)
link|improve this question

71% accept rate
On your View page, what is your Model defined as at the top of the page? – WEFX May 17 '11 at 19:34
yup ... I have it working now ... I changed Model.StateViewModel to a string that holds the selected value instead of the selected object and for some reason everything was happy! ? – Mike May 20 '11 at 17:02
feedback

1 Answer

up vote 0 down vote accepted

I see you are specifying a new SelectList :

 @Html.DropDownListFor(model => model.StateViewModel
    , new SelectList(Model.StateViewModels
    , "Abbr"
    , "Name"
    , Model.StateViewModel.Abbr)
    , @Resource.SelectState)

this will render a new instance of the list, not the one you were passing in!Hence you will not have a selected value.

Try setting it to :

@Html.DropDownListFor(model => model.SelectedStateID,
                        Model.States
                        , new { id = "ddlStates" })

And in your Controller/ViewModel, populate the SelectList as shown below.I wrote my own example as it was easier. below is the code for the Controller, within the ActionResult :

  //Retrieve the list via LINQ/however and also the SelectedStateID
  var states = ....

   var statesList = new SelectList(states, "Abbr", "Name", SelectedStateID);


   var viewModel = new StateViewModel
    {
        //assign it to the corresponding ViewModel property
        States = statesList ,
                ...
                ...
    };

    return View( viewModel);  

Your ViewModel would look like this :

 private List<SelectListItem> _states = new List<SelectListItem>();
    public List<SelectListItem> States 
    {
        get
        {
            return (_states );
        }

        set
        {
            _states = value;
        }
    }

    public Guid SelectedStateID
    {
        get;
        set;
    }

I'm assuming this was your question, and that you didnt want to actually have a new list, and also select a value within that list as a default.

If that was the case, try this:

 @Html.DropDownListFor(model => model.StateViewModel
    , new SelectList(Model.StateViewModels
                    , "Abbr"
                    , "Name")
, Model.StateViewModel.Abbr
, @Resource.SelectState)

I think your closing brace was in the wrong position !

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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