5
<%= 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を参照してください..とにかく、別の名前を付けることができますが、大したことはありません。

4

2 に答える 2

4

属性を持つ入力要素を生成するカスタムテンプレートを使用する必要があります。または、ページにJavaScriptを追加して、クライアント側の属性を追加することもできます。

<%= Html.EditorFor( product => product.Name, "NoAutocompleteTextBox" ) %>

次に、Shared / EditorTemplatesで、定義するNoAutocompleteTextBox.ascxが必要です。

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<%= Html.TextBox("", ViewData.TemplateInfo.FormattedModelValue,
                     new { autocomplete = "off" }) %>

または、jQueryの方法で、すべてのテキスト入力に設定します

$(function() {
    $('input[type=text]').attr('autocomplete','off');
});
于 2010-07-22T12:16:44.077 に答える
2
public static MvcHtmlString EditorForAttr<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression, object htmlAttributes) {
    return EditorForAttr(html, expression, new RouteValueDictionary(htmlAttributes));
}
public static MvcHtmlString EditorForAttr<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);

    TagBuilder tag = new TagBuilder("input");
    tag.GenerateId(html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldId(htmlFieldName));
    tag.MergeAttribute("name", htmlFieldName);
    tag.MergeAttribute("type", "text");
    tag.MergeAttribute("value", metadata.Model == null ? "" : metadata.Model.ToString()); // Not sure if this is correct.
    tag.MergeAttributes(htmlAttributes, true);
    return MvcHtmlString.Create(tag.ToString(TagRenderMode.SelfClosing));
}
于 2010-07-22T13:04:29.387 に答える