MVC,CheckboxList扩展html helper ..其他问题

时间:2012-06-26 13:45:39

标签: asp.net-mvc razor checkbox asp.net-mvc-4

下午好。

我希望这会很好,而且我自己也很简单,但是我已经深入了,目前无法游泳。

好的,之前我问了this问题,因此我实施了以下内容:

模型

 public class CorporateDetails
{

    public Guid? Id { get; set; }

    [Key]
    public int CorporateDetailId { get; set; }


    public int? EmsId { get; set; }
    public string EmsName { get; set; }

    public virtual EmsType EmsType { get; set; }
}

public class EmsType
{
    [Key]
    public int? EmsId { get; set; }
    public string EmsName { get; set; }

    public virtual ICollection<EmsType> EmsTypes { get; set; }
}

控制器

 public ActionResult Create()
    {
        ViewBag.EmsId = new MultiSelectList(db.EmsTypes, "EmsId", "EmsName");
        return View();
    }

查看

<fieldset>
    <legend>CorporateDetails</legend>

    <div class="editor-label">
        @Html.LabelFor(model => model.EmsId, "EmsType")
    </div>
    <div class="editor-field">
        @Html.DropDownList("EmsId", String.Empty)
        @Html.ValidationMessageFor(model => model.EmsId)
    </div>
<div class="editor-label">

        @Html.CheckBoxListFor(model => model.EmsId, (MultiSelectList) ViewBag.EmsId)
    </div>
    <p>
        <input type="submit" value="Create" />
    </p>
</fieldset>
}

    <div>
        @Html.ActionLink("Back to List", "Index")
    </div>
    @section Scripts {
        @Scripts.Render("~/bundles/jqueryval")
    }

此CheckBoxListFor使用以下扩展名

public static class HtmlHelper
{
    //Extension
    public static MvcHtmlString CheckBoxListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty[]>> expression, MultiSelectList multiSelectList, object htmlAttributes = null)
    {
        //Derive property name for checkbox name
        MemberExpression body = expression.Body as MemberExpression;
        string propertyName = body.Member.Name;

        //Get currently select values from the ViewData model
        TProperty[] list = expression.Compile().Invoke(htmlHelper.ViewData.Model);

        //Convert selected value list to a List<string> for easy manipulation
        List<string> selectedValues = new List<string>();

        if (list != null)
        {
            selectedValues = new List<TProperty>(list).ConvertAll<string>(delegate(TProperty i) { return i.ToString(); });
        }

        //Create div
        TagBuilder divTag = new TagBuilder("div");
        divTag.MergeAttributes(new RouteValueDictionary(htmlAttributes), true);

        //Add checkboxes
        foreach (SelectListItem item in multiSelectList)
        {
            divTag.InnerHtml += String.Format("<div><input type=\"checkbox\" name=\"{0}\" id=\"{0}_{1}\" " +
                                                "value=\"{1}\" {2} /><label for=\"{0}_{1}\">{3}</label></div>",
                                                propertyName,
                                                item.Value,
                                                selectedValues.Contains(item.Value) ? "checked=\"checked\"" : "",
                                                item.Text);
        }

        return MvcHtmlString.Create(divTag.ToString());
    }
}

所以有什么问题?

当我运行它时,我收到一个令人讨厌的错误告诉我:

  

“CS0411:方法的类型参数   “Extensions.HtmlHelper.CheckBoxListFor(System.Web.Mvc.HtmlHelper,   System.Linq.Expressions.Expression&gt;中   System.Web.Mvc.MultiSelectList,object)'无法从中推断出来   用法。尝试明确指定类型参数。“

有人可以指出我出错的地方,因为我绕圈而不确定我错过了什么。

感谢任何帮助。

2 个答案:

答案 0 :(得分:1)

里卡多,

我在GitHub上分享了一些自己的MVC助手。请随意浏览&amp;根据需要使用代码。项目中的一个项目是CheckBoxListItemFor帮助程序,它是专门为创建复选框列表而创建的。在InputExtensions.cs下查看

https://github.com/EdCharbeneau/EJC.UIExtensions/tree/master/EJC.UIExtensions/Html

答案 1 :(得分:0)

这里的问题是我的原始EmsId是一个可以为空的int而不是所需的int数组,因此错误。

请参阅我给出的here答案,详细说明如何实现这一目标。