Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got two dropdownlists set up with classic Parent/Child behavior - changing the Parent resets the Child values. Everything works great except when the selected Child value for one Parent is in the list of values for another Parent row. Instead of having no selection in the new Child list, the Child value from the previous Parent row is selected.

To reproduce run the included code, choose "Parent1" from the Parent list. Choose "Two" from the Child list. Choose "Parent2" from the Parent list. The Child selection should be "- select a child -", however it is "Two" instead. Any ideas why this is happening?

Model:

public class TestViewModel
{
    public int ParentID { get; set; }
    public int ChildID { get; set; }
    public SelectList ParentSelectList { get; set; }
    public SelectList ChildSelectList { get; set; }

    public void GetParentList()
    {
        List<SelectListItem> items = new List<SelectListItem>();
        items.Add(new SelectListItem() { Text = "Parent1", Value = "1" });
        items.Add(new SelectListItem() { Text = "Parent2", Value = "2" });
        ParentSelectList = new SelectList(items, "Value", "Text");
    }

    public void GetChildList()
    {
        List<SelectListItem> items = new List<SelectListItem>();
        if (ParentID == 1)
        {
            items.Add(new SelectListItem() { Text = "One", Value = "1", Selected = false });
            items.Add(new SelectListItem() { Text = "Two", Value = "2", Selected = false });
            items.Add(new SelectListItem() { Text = "Three", Value = "3", Selected = false });
        }
        else
        {
            items.Add(new SelectListItem() { Text = "Two", Value = "2", Selected = false });
            items.Add(new SelectListItem() { Text = "Four", Value = "4", Selected = false });
            items.Add(new SelectListItem() { Text = "Six", Value = "6", Selected = false });
        }
        ChildSelectList = new SelectList(items, "Value", "Text");
    }
}

Controller:

public class HomeController : Controller
{
    [HttpGet]
    public ActionResult Index()
    {
        TestViewModel vm = new TestViewModel();
        vm.GetParentList();
        return View(vm);
    }

    [HttpPost]
    public ActionResult Index(TestViewModel vm)
    {
        vm.GetParentList();
        if (vm.ParentID > 0) // parent selected
        {
            vm.GetChildList();
        }
        return View(vm);
    }
}

View:

@model MvcTest.Models.TestViewModel
@using (Html.BeginForm())
{ 
<div>
    <div style="margin:10px">
        Parent<br />
        @Html.DropDownListFor(p => p.ParentID, Model.ParentSelectList, "- select a parent -", new { onchange = "this.form.submit();" })
    </div>
    @if (Model.ParentID > 0)
    {
    <div style="margin:10px">
        Child<br />
        @Html.DropDownListFor(c => c.ChildID, Model.ChildSelectList, "- select a child -", new { onchange = "this.form.submit();" })
    </div>
    }
</div>
} 
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.