Каким образом не придется ретроактивно производить эти данные-атрибуты?


Этот помощник Html.DropDownListFor должен создать атрибуты данных, но не может этого сделать, если есть какая - либо вложенность. Так что это не производит их:

@( 
 Html.DropDownListFor( 
  m => m.P[0].CId, 
  new SelectList(
   Model.Cs.Values, 
   "Id", "DisplayFields", Model.Cs.StartValue), 
  Model.Cs.Message 
 ) 
)

Однако, это производит их просто отлично:

@( 
 Html.DropDownListFor( 
  m => m.CId, 
  new SelectList(
   Model.Cs.Values, 
   "Id", "DisplayFields", Model.Cs.StartValue), 
  Model.Cs.Message 
 ) 
)

Как я могу избежать необходимости возвращаться и определять недостающие атрибуты данных вручную с помощью некоторого скрипта?

1 2

1 ответ:

Нет другого способа, кроме как ретроактивно присвоить эти недостающие атрибуты данных при использовании помощника @Html.DropDownListFor. Наиболее важными из них являются:data-val = "true", data-val-required="This value is required". Кроме того, промежуток для проверки с помощью data-valmsg-replace="true", data-valmsg-for="ID OF SELECT ELEMENT", class="field-validation-valid".

Однако, если вы решите использовать пользовательский помощник, этого можно избежать. Это можно увидеть здесь: http://forums.asp.net/t/1649193.aspx/1/10 где ответ подробно описывает, как расширить dropdownlist для помощника. Вот код, который они используют:

[SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "This is an appropriate nesting of generic types")]
    public static MvcHtmlString DdUovFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList)
    {
        return DdUovFor(htmlHelper, expression, selectList, null /* optionLabel */, null /* htmlAttributes */);
    }


    [SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "This is an appropriate nesting of generic types")]
    public static MvcHtmlString DdUovFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, object htmlAttributes)
    {
        return DdUovFor(htmlHelper, expression, selectList, null /* optionLabel */, new RouteValueDictionary(htmlAttributes));
    }


    [SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "This is an appropriate nesting of generic types")]
    public static MvcHtmlString DdUovFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, IDictionary<string, object> htmlAttributes)
    {
        return DdUovFor(htmlHelper, expression, selectList, null /* optionLabel */, htmlAttributes);
    }


    [SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "This is an appropriate nesting of generic types")]
    public static MvcHtmlString DdUovFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, string optionLabel)
    {
        return DdUovFor(htmlHelper, expression, selectList, optionLabel, null /* htmlAttributes */);
    }


    [SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "This is an appropriate nesting of generic types")]
    public static MvcHtmlString DdUovFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, string optionLabel, object htmlAttributes)
    {
        return DdUovFor(htmlHelper, expression, selectList, optionLabel, new RouteValueDictionary(htmlAttributes));
    }


    [SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters", Justification = "Users cannot use anonymous methods with the LambdaExpression type")]
    [SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "This is an appropriate nesting of generic types")]
    public static MvcHtmlString DdUovFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, string optionLabel, IDictionary<string, object> htmlAttributes)
    {
        if (expression == null)
        {
            throw new ArgumentNullException("expression");
        }


        ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);


        IDictionary<string, object> validationAttributes = htmlHelper
            .GetUnobtrusiveValidationAttributes(ExpressionHelper.GetExpressionText(expression), metadata);


        if (htmlAttributes == null)
            htmlAttributes = validationAttributes;
        else
            htmlAttributes = htmlAttributes.Concat(validationAttributes).ToDictionary(k => k.Key, v => v.Value);


        return SelectExtensions.DropDownListFor(htmlHelper, expression, selectList, optionLabel, htmlAttributes);
    }