5

如何让下拉菜单显示为我的编辑器模板的一部分?

所以我有一个用户实体和一个角色实体。Roles 作为 SelectList 和 User 作为 User 传递给视图。SelectList 变成了一个下拉列表,其中选择了正确的 ID 以及由于这个示例而得到的一切。

我正在尝试使用 MVC 3 为我的实体获得一个多合一的很好地捆绑的 EditorTemplate,这样我就可以调用 EditorForModel 并通过添加下拉列表来很好地布局字段,只要我有诸如角色之类的外键,在这种特殊情况下。

我的EditorTemplates\User.cshtml(根据ViewData动态生成布局):

<table style="width: 100%;">
@{
    int i = 0;  
    int numOfColumns = 3;

    foreach (var prop in ViewData.ModelMetadata.Properties
        .Where(pm => pm.ShowForDisplay && !ViewData.TemplateInfo.Visited(pm))) 
    { 
        if (prop.HideSurroundingHtml) 
        { 
            @Html.Display(prop.PropertyName) 
        }
        else 
        { 
            if (i % numOfColumns == 0)
            {

                @Html.Raw("<tr>");
            }

            <td class="editor-label">
                @Html.Label(prop.PropertyName)
            </td>
            <td class="editor-field">
                @Html.Editor(prop.PropertyName)
                <span class="error">@Html.ValidationMessage(prop.PropertyName,"*")</span>
            </td>

            if (i % numOfColumns == numOfColumns - 1)
            {
                @Html.Raw("</tr>");
            }
            i++;
        }
    }
}
</table>

然后在视图上单独绑定 SelectList,我想将它作为模板的一部分。

我的模型:

public class SecurityEditModel
{
    [ScaffoldColumn(false)]
    public SelectList roleList { get; set; }

    public User currentUser { get; set; }
}

我的控制器:

public ViewResult Edit(int id)
{
    User user = repository.Users.FirstOrDefault(c => c.ID == id);

    var viewModel = new SecurityEditModel
        {
            currentUser = user,
            roleList = new SelectList(repository.Roles.Where(r => r.Enabled == true).ToList(), "ID", "RoleName")
        };

    return View(viewModel);
}

我的观点:

@model Nina.WebUI.Models.SecurityEditModel

@{
    ViewBag.Title = "Edit";
    Layout = "~/Views/Shared/_Layout.cshtml";
}

<h2>Edit</h2>


@using(Html.BeginForm("Edit", "Security"))
{
    @Html.EditorFor(m => m.currentUser)
    <table style="width: 100%;">
        <tr>
            <td class="editor-label">
                User Role:
            </td>
            <td class="editor-field">
                <!-- I want to move this to the EditorTemplate -->
                @Html.DropDownListFor(model => model.currentUser.RoleID, Model.roleList)
            </td>
        </tr>
    </table>
    <div class="editor-row">
        <div class="editor-label">

        </div>
        <div class="editor-field">

        </div>
    </div>
    <div class="editor-row">&nbsp;</div>
    <div style="text-align: center;">
        <input type="submit" value="Save"/>&nbsp;&nbsp;
        <input type="button" value="Cancel" onclick="location.href='@Url.Action("List", "Clients")'"/>
    </div>

}       

希望这足够清楚,让我知道您是否可以使用更多说明。提前致谢!

4

1 回答 1

0

由于您需要访问 SelectList,您可以创建绑定到的编辑器模板,SecurityEditModel也可以在 ViewData 中传递 SelectList。就我个人而言,我会采用强类型方法。

于 2012-01-03T13:43:10.403 回答