Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

here my model

 public class NewsCategoriesModel
{
    public int NewsCategoriesID { get; set; }        
    public string NewsCategoriesName { get; set; }
}

my Controller

public ActionResult NewsEdit(int ID, dms_New dsn)
    {
        dsn = (from a in dc.dms_News where a.NewsID == ID select a).FirstOrDefault();
        var categories = (from b in dc.dms_NewsCategories select b).ToList();
        var selectedValue = dsn.NewsCategoriesID;
        SelectList ListCategories = new SelectList(categories, "NewsCategoriesID", "NewsCategoriesName",selectedValue);


        // ViewBag.NewsCategoriesID = new SelectList(categories as IEnumerable<dms_NewsCategory>, "NewsCategoriesID", "NewsCategoriesName", dsn.NewsCategoriesID);
        ViewBag.NewsCategoriesID = ListCategories;
        return View(dsn);
    }

and then my view

@Html.DropDownList("NewsCategoriesID", (SelectList)ViewBag.NewsCategoriesID)

when i run, the dropdownlist not selecte value i set.. it's alway select the first

share|improve this question
1  
Your model and select list have the same name, you can't do that. See my DDL tutorial asp.net/mvc/tutorials/javascript/… and blogs.msdn.com/b/rickandy/archive/2012/01/09/… – RickAndMSFT Mar 20 '12 at 16:17

5 Answers

up vote 20 down vote accepted

You should use view models and forget about ViewBag Think of it as if it didn't exist. You will see how easier things will become. So define a view model:

public class MyViewModel
{
    public int SelectedCategoryId { get; set; }
    public IEnumerable<SelectListItem> Categories { get; set; } 
}

and then populate this view model from the controller:

public ActionResult NewsEdit(int ID, dms_New dsn)
{
    var dsn = (from a in dc.dms_News where a.NewsID == ID select a).FirstOrDefault();
    var categories = (from b in dc.dms_NewsCategories select b).ToList();

    var model = new MyViewModel
    {
        SelectedCategoryId = dsn.NewsCategoriesID,
        Categories = categories.Select(x => new SelectListItem
        {
            Value = x.NewsCategoriesID.ToString(),
            Text = x.NewsCategoriesName
        })
    };
    return View(model);
}

and finally in your view use the strongly typed DropDownListFor helper:

@model MyViewModel

@Html.DropDownListFor(
    x => x.SelectedCategoryId,
    Model.Categories
)
share|improve this answer
yes, it's working now, thanks :) – Raito Light Jul 24 '11 at 14:40
13  
Nothing wrong with using ViewBag to contain the SelectList - the MVC scaffolding mechanism does that. His problem was using the same name for the model and the selectlist. – RickAndMSFT Mar 20 '12 at 16:20
this answer completely missed the problem. @RickAndMSFT, thanks for the actual solution – Liam Aug 22 '12 at 11:20
@Liam, you call something that uses ViewBag an actual solution? I wouldn't :-) Cheers anyway. – Darin Dimitrov Aug 22 '12 at 11:25
1  
@Liam, I take your point as well, I just don't agree! :-) – Darin Dimitrov Aug 22 '12 at 11:34
show 3 more comments

just in case someone comes with this question, this is how I do it, please forget about the repository object, I'm using the Repository Pattern, you can use your object context to retrieve the entities. And also don't pay attention to my entity names, my entity type Action has nothing to do with an MVC Action.

Controller:

ViewBag.ActionStatusId = new SelectList(repository.GetAll<ActionStatus>(), "ActionStatusId", "Name", myAction.ActionStatusId);

Pay attention that the last variable of the SelectList constructor is the selected value (object selectedValue)

Then this is my view to render it:

<div class="editor-label">
   @Html.LabelFor(model => model.ActionStatusId, "ActionStatus")
</div>
<div class="editor-field">
   @Html.DropDownList("ActionStatusId")
   @Html.ValidationMessageFor(model => model.ActionStatusId)
</div> 

I think it is pretty simple, I hope this helps! :)

share|improve this answer
1  
you sir are a genius! – Ben Mar 20 '12 at 13:17
Thanks Ben. Honestly I think that my solution is the simplest one of these available. Just create the SelectList and at the same time pass the selected value in the constructor of SelectList. Glad it helped you :) – Alfonso Muñoz Mar 28 '12 at 23:00

I prefer the lambda form of the DropDownList helper - see MVC 3 Layout Page, Razor Template, and DropdownList

If you want to use the SelectList, then I think this bug report might assist - http://aspnet.codeplex.com/workitem/4932

share|improve this answer

I want to put the correct answer in here, just in case others are having this problem like I was. If you hate the ViewBag, fine don't use it, but the real problem with the code in the question is that the same name is being used for both the model property and the selectlist as was pointed out by @RickAndMSFT

Simply changing the name of the DropDownList control should resolve the issue, like so:

@Html.DropDownList("NewsCategoriesSelection", (SelectList)ViewBag.NewsCategoriesID)

It doesn't really have anything to do with using the ViewBag or not using the ViewBag as you can have a name collision with the control regardless.

share|improve this answer

Well its very simple in controller you have somthing like this:

-- Controller

ViewBag.Profile_Id = new SelectList(db.Profiles, "Id", "Name", model.Profile_Id);

--View (Option A)

@Html.DropDownList("Profile_Id")

--View (Option B) --> Send a null value to the list

@Html.DropDownList("Profile_Id", null, "-- Choose --", new {  @class = "input-large" })
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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