如何在SelectListItem中正确设置所选项?

时间:2013-12-25 19:35:08

标签: asp.net-mvc selectlistitem

我构建了一个新的SelectListItem。我可以填充选项,但它不会让我设置选定项目:

模型值

Model.Clients.ClientId = 1
Model.Clients.Name = "Company 1"
Model.Clients.ClientId = 2
Model.Clients.Name = "Company 2"
Model.Clients.ClientId = 3
Model.Clients.Name = "Company 3"
Model.Clients.ClientId = 4
Model.Clients.Name = "Company 4"
Model.Clients.ClientId = 5
Model.Clients.Name = "Company 5"

Model.User.Client.ClientId = 3

DropDownListFor

@Html.DropDownListFor(model => model.User.Client, Model.Clients.Select(x => new SelectListItem
{
    Text = x.Name,
    Value = x.ClientId.ToString(),
    Selected = x.ClientId == Model.User.Client.ClientId
    }).ToList(),
    new { @class = "form-control" }
)

下拉列表HTML

<select class="form-control" id="User_Client" name="User.Client">
    <option value="1">Company 1</option>
    <option value="2">Company 2</option>
    <option value="3">Company 3</option>
    <option value="4">Company 4</option>
    <option value="5">Company 5</option>
</select>

我的代码使选项3成为所选项目,但事实并非如此。

2 个答案:

答案 0 :(得分:1)

尝试以下代码:

@Html.DropDownListFor(model => model.User.Client.ClientId, 
new SelectList(Model.Clients,"ClientId","Name", Model.User.Client.ClientId), 
new { @class = "form-control" })

注意:您无法为DropDownList绑定Client类,您需要使用ClientId之类的属性。

最好为所选客户端添加另一个属性。如下所示:

public class yourModel
{
   public int selectedClientId {get;set;}
   //
}

    @Html.DropDownListFor(model => model.selectedClientId, 
    new SelectList(Model.Clients,"ClientId","Name", Model.User.Client.ClientId), 
    new { @class = "form-control" })

答案 1 :(得分:0)

尝试以下

 @Html.DropDownListFor(model  => model.User.Client,
 new SelectList(Model.Clients.ToList(), "ClientId", "Name", Model.User.Client.ClientId))