<%= Html.EditorFor(product => product.Name) %>
生成された出力にautocomplete="off"属性を設定する必要があります。
私が欠けているものは何ですか?
編集:属性のキー/値ディクショナリを受け入れるEditorForの拡張メソッドを探しているので、次のように呼び出すことができます:<%= Html.EditorFor(product => product.Name, new { autocomplete = "off" } ) %>
ここではLabelForに対して実行されますが、EditorForに対して調整する必要があります。
public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, object htmlAttributes) {
return LabelFor(html, expression, new RouteValueDictionary(htmlAttributes));
}
public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, IDictionary<string, object> htmlAttributes)
{
ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, html.ViewData);
string htmlFieldName = ExpressionHelper.GetExpressionText(expression);
string labelText = metadata.DisplayName ?? metadata.PropertyName ?? htmlFieldName.Split('.').Last();
if (String.IsNullOrEmpty(labelText))
{
return MvcHtmlString.Empty;
}
TagBuilder tag = new TagBuilder("label");
tag.MergeAttributes(htmlAttributes);
tag.Attributes.Add("for", html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldId(htmlFieldName));
tag.SetInnerText(labelText);
return MvcHtmlString.Create(tag.ToString(TagRenderMode.Normal));
}
Edit2:匿名タイプを受け入れるオーバーライドされたEditorForがすでに存在するため、EditorForという名前を付けることができないことに気付きました。http://msdn.microsoft.com/en-us/library/ff406462.aspxを参照してください..とにかく、別の名前を付けることができますが、大したことはありません。