2013-12-13 13 views
10

W moim ViewModel mam:ASP.NET MVC + Populate DropdownList

public class PersonViewModel 
{ 
    public Person Person { get; set; } 
    public int SelectRegionId { get; set; } 
    public IEnumerable<SelectListItem> Regions { get; set; } 
} 

Ale co mam zrobić w moim kontrolera/widoku, aby pokazać wartości? Co mam teraz:
Kontroler:

public ActionResult Create() 
{ 
    var model = new ReUzze.Models.PersonViewModel 
    { 
     Person = new Person(), 
     Regions = new SelectList(this.UnitOfWork.RegionRepository.Get(), "Id", "Name") 
    }; 
    return View(model); 
} 

Widok:

<div class="form-group"> 
    @Html.LabelFor(model => model.Person.Address.Region) 
    @Html.DropDownListFor(model => model.SelectRegionId, new SelectList(Model.Regions, "Id", "Name"), "Choose... ") 
</div> 

Ale daje błąd jak poniżej:

Cannot implicitly convert type 'System.Web.Mvc.SelectList' to 'System.Collections.Generic.IEnumerable<System.Web.WebPages.Html.SelectListItem>'. An explicit conversion exists (are you missing a cast?) 
+0

można dodać komunikat o błędzie otrzymujesz? – MattC

+0

Właściwość Regiony w modelu powinna być normalną listą elementów. Nie ustawiaj go na liście SelectList. – Slavo

+0

Możesz nawet użyć ViewBag, aby przesłać dane w liście do widoku, a następnie powiązać listę rozwijaną z nim. Zobacz http://www.yogihosting.com/blog/populate-dropdownlist-with-dynamic-values-in-asp-net-mvc/ – yogihosting

Odpowiedz

12

Twój ViewModel ma właściwość typu "IEnumerable", ale SelectList nie spełnia tego typu. Zmień swój kod tak:

public class PersonViewModel 
{ 
    public Person Person { get; set; } 
    public int SelectRegionId { get; set; } 
    public SelectList Regions { get; set; } 
} 

Widok:

<div class="form-group"> 
    @Html.LabelFor(model => model.Person.Address.Region) 
    @Html.DropDownListFor(model => model.SelectRegionId, Model.Regions, "Choose... ") 
</div> 
7

tworzysz selectList instancji dwukrotnie . Pozbądź się jednego z nich:

@Html.DropDownListFor(model => model.SelectRegionId, Model.Regions, "Choose... ") 
Powiązane problemy