回答:
MVC3では、幅を次のように設定できます。
@Html.TextBoxFor(c => c.PropertyName, new { style = "width: 500px;" })
/ Views / Shared / EditorTemplatesフォルダーにString.ascxという名前のEditorTemplateを作成して、これを解決しました。
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<string>" %>
<% int size = 10;
int maxLength = 100;
if (ViewData["size"] != null)
{
size = (int)ViewData["size"];
}
if (ViewData["maxLength"] != null)
{
maxLength = (int)ViewData["maxLength"];
}
%>
<%= Html.TextBox("", Model, new { Size=size, MaxLength=maxLength }) %>
私の見解では、私は
<%= Html.EditorFor(model => model.SomeStringToBeEdited, new { size = 15, maxLength = 10 }) %>
私の魅力のように機能します!
@ Html.EditorForのHTML属性の設定に関するこのスレッドやその他のスレッドでの回答はどれも、私にとって大きな助けにはなりませんでした。しかし、私は素晴らしい答えを見つけました
私は同じアプローチを使用しましたが、余分なコードをたくさん書くことなく、うまく機能しました。Html.EditorForのhtml出力のid属性が設定されていることに注意してください。ビューコード
<style type="text/css">
#dob
{
width:6em;
}
</style>
@using (Html.BeginForm())
{
Enter date:
@Html.EditorFor(m => m.DateOfBirth, null, "dob", null)
}
データアノテーションと「dd MMM yyyy」の日付形式のモデルプロパティ
[Required(ErrorMessage= "Date of birth is required")]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd MMM yyyy}")]
public DateTime DateOfBirth { get; set; }
余分なコードをたくさん書くことなく、魅力のように動作しました。この回答はASP.NET MVC 3 Razor C#を使用しています。
Kiran Chandのブログ投稿をご覧になりたい場合は、次のようなビューモデルでカスタムメタデータを使用します。
[HtmlProperties(Size = 5, MaxLength = 10)]
public string Title { get; set; }
これは、メタデータを利用するカスタムテンプレートと組み合わされます。私の意見ではクリーンでシンプルなアプローチですが、mvcに組み込まれているこの一般的なユースケースを確認したいと思います。
EditorFor
としてそれを渡すことによって:new { htmlAttributes: { @class = "yourclass" } }
「additionalViewData」に渡して、反対側でそれを読んでいる人が誰もいないことに驚いています。
ビュー(わかりやすくするために改行あり):
<%= Html.EditorFor(c => c.propertyname, new
{
htmlAttributes = new
{
@class = "myClass"
}
}
)%>
エディターテンプレート:
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<string>" %>
<%= Html.TextBox("", Model, ViewData["htmlAttributes"])) %>
問題は、テンプレートに複数のHTML要素が含まれる可能性があるため、MVCがサイズ/クラスを適用する要素を認識できないことです。自分で定義する必要があります。
テンプレートをTextBoxViewModelという独自のクラスから派生させます。
public class TextBoxViewModel
{
public string Value { get; set; }
IDictionary<string, object> moreAttributes;
public TextBoxViewModel(string value, IDictionary<string, object> moreAttributes)
{
// set class properties here
}
public string GetAttributesString()
{
return string.Join(" ", moreAttributes.Select(x => x.Key + "='" + x.Value + "'").ToArray()); // don't forget to encode
}
}
テンプレートでこれを行うことができます:
<input value="<%= Model.Value %>" <%= Model.GetAttributesString() %> />
あなたの見解では、
<%= Html.EditorFor(x => x.StringValue) %>
or
<%= Html.EditorFor(x => new TextBoxViewModel(x.StringValue, new IDictionary<string, object> { {'class', 'myclass'}, {'size', 15}}) %>
最初のフォームは文字列のデフォルトテンプレートをレンダリングします。2番目のフォームはカスタムテンプレートをレンダリングします。
代替構文は流暢なインターフェースを使用します:
public class TextBoxViewModel
{
public string Value { get; set; }
IDictionary<string, object> moreAttributes;
public TextBoxViewModel(string value, IDictionary<string, object> moreAttributes)
{
// set class properties here
moreAttributes = new Dictionary<string, object>();
}
public TextBoxViewModel Attr(string name, object value)
{
moreAttributes[name] = value;
return this;
}
}
// and in the view
<%= Html.EditorFor(x => new TextBoxViewModel(x.StringValue).Attr("class", "myclass").Attr("size", 15) %>
これをビューで行う代わりに、コントローラーで行うか、ViewModelで行うほうがよいことに注意してください。
public ActionResult Action()
{
// now you can Html.EditorFor(x => x.StringValue) and it will pick attributes
return View(new { StringValue = new TextBoxViewModel(x.StringValue).Attr("class", "myclass").Attr("size", 15) });
}
また、基本のTemplateViewModelクラス(すべてのビューテンプレートの共通基盤)を作成できることにも注意してください。このクラスには、属性などの基本的なサポートが含まれます。
しかし、一般的に私はMVC v2にはもっと良いソリューションが必要だと思います。それはまだベータ版です-それを求めに行く;-)
CSSを使用する方法だと思います。XAMLのように.NETコーディングでもっと多くのことができるといいのですが、ブラウザではCSSが重要です。
Site.css
#account-note-input {
width:1000px;
height:100px;
}
.cshtml
<div class="editor-label">
@Html.LabelFor(model => model.Note)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Note, null, "account-note-input", null)
@Html.ValidationMessageFor(model => model.Note)
</div>
ジョー
EditorFor
テンプレートの使用時にコントロール固有のCSSを変更する場合に非常に役立ちます。私はMVC4を使用していますが、これはうまくいきました。
プロパティの属性を定義できます。
[StringLength(100)]
public string Body { get; set; }
これはとして知られていSystem.ComponentModel.DataAnnotations
ます。あなたが見つからない場合ValidationAttribute
必要なものが場合は、常にカスタム属性を定義できます。
よろしく、カルロス
これは最も洗練されたソリューションではないかもしれませんが、簡単です。HtmlHelper.EditorForクラスの拡張機能を記述できます。その拡張機能では、ヘルパーのViewDataにオプションを書き込むオプションパラメーターを指定できます。ここにいくつかのコードがあります:
まず、拡張メソッド:
public static MvcHtmlString EditorFor<TModel, TProperty>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TProperty>> expression, TemplateOptions options)
{
return helper.EditorFor(expression, options.TemplateName, new
{
cssClass = options.CssClass
});
}
次に、オプションオブジェクト:
public class TemplateOptions
{
public string TemplateName { get; set; }
public string CssClass { get; set; }
// other properties for info you'd like to pass to your templates,
// and by using an options object, you avoid method overload bloat.
}
そして最後に、String.ascxテンプレートからの行は次のとおりです。
<%= Html.TextBox("", ViewData.TemplateInfo.FormattedModelValue, new { @class = ViewData["cssClass"] ?? "" }) %>
率直に言って、これはあなたのコードを今後も維持しなければならない貧しい魂にとっては単純明快だと思います。また、テンプレートに渡したい他のさまざまな情報にも簡単に拡張できます。これまでのところ、周囲のhtmlを標準化するのに役立つテンプレートのセットにできるだけ多くラップしようとしているプロジェクトでは、http://bradwilson.typepad.com/blog/2009/でうまく機能しています。10 / aspnet-mvc-2-templates-part-5-master-page-templates.html。
自分の質問に答えるためにブログエントリを書きました
Html.EditorForで機能しない理由はわかりませんが、TextBoxForを試してみましたが、うまくいきました。
@Html.TextBoxFor(m => m.Name, new { Class = "className", Size = "40"})
...そして検証も機能します。
@class = "className"
私の実践では、HtmlHelperを1つだけ含むEditorTemplates(ほとんどの場合はTextBox)を使用するのが最善であることを発見しました。より複雑なhtml構造のテンプレートが必要な場合は、別のHtmlHelperを作成します。
TextBoxのhtmlAttributesの代わりにViewDataオブジェクト全体を貼り付けることができると仮定します。さらに、特別な処理が必要な場合は、ViewDataの一部のプロパティのカスタマイズコードを記述できます。
@model DateTime?
@*
1) applies class datepicker to the input;
2) applies additionalViewData object to the attributes of the input
3) applies property "format" to the format of the input date.
*@
@{
if (ViewData["class"] != null) { ViewData["class"] += " datepicker"; }
else { ViewData["class"] = " datepicker"; }
string format = "MM/dd/yyyy";
if (ViewData["format"] != null)
{
format = ViewData["format"].ToString();
ViewData.Remove("format");
}
}
@Html.TextBox("", (Model.HasValue ? Model.Value.ToString(format) : string.Empty), ViewData)
以下は、ビューの構文と出力されるhtmlの例です。
@Html.EditorFor(m => m.Date)
<input class="datepicker" data-val="true" data-val-required="&#39;Date&#39; must not be empty." id="Date" name="Date" type="text" value="01/08/2012">
@Html.EditorFor(m => m.Date, new { @class = "myClass", @format = "M/dd" })
<input class="myClass datepicker" data-val="true" data-val-required="&#39;Date&#39; must not be empty." id="Date" name="Date" type="text" value="1/08">
問題はEditorForのためです WEFXの提案ではなくEditorFor。
個々の入力ボックスを変更するには、EditorForメソッドの出力を処理できます。
<%: new HtmlString(Html.EditorFor(m=>m.propertyname).ToString().Replace("class=\"text-box single-line\"", "class=\"text-box single-line my500pxWideClass\"")) %>
MVCがEditorForテキストボックスのクラスを.text-boxで設定することが判明したため、すべてのEditorForsを変更することもできます。したがって、スタイルシートまたはページでこのスタイルをオーバーライドできます。
.text-box {
width: 80em;
}
さらに、スタイルを設定できます
input[type="text"] {
width: 200px;
}
これを回避する方法の1つは、ビューモデルのデリゲートに、このような特別なレンダリングの印刷を処理させることです。ページングクラスに対してこれを実行しました。モデルのパブリックプロパティを公開しますFunc<int, string> RenderUrl
。それを処理するために。
したがって、カスタムビットの記述方法を定義します。
Model.Paging.RenderUrl = (page) => { return string.Concat(@"/foo/", page); };
Paging
クラスのビューを出力します。
@Html.DisplayFor(m => m.Paging)
...そして実際のPaging
ビュー:
@model Paging
@if (Model.Pages > 1)
{
<ul class="paging">
@for (int page = 1; page <= Model.Pages; page++)
{
<li><a href="@Model.RenderUrl(page)">@page</a></li>
}
</ul>
}
それは複雑すぎる問題と見なすことができましたが、私はどこでもこれらのポケットベルを使用しており、同じボイラープレートコードを表示してレンダリングするのを我慢できませんでした。
更新:ええと、モデルは値で渡されるので属性は保持されないため、明らかにこれは機能しません。この答えはアイデアとして残しておきます。
別の解決策は、モデルの独自の属性をチェックする独自のTextBox / etcヘルパーを追加することだと思います。
public class ViewModel
{
[MyAddAttribute("class", "myclass")]
public string StringValue { get; set; }
}
public class MyExtensions
{
public static IDictionary<string, object> GetMyAttributes(object model)
{
// kind of prototype code...
return model.GetType().GetCustomAttributes(typeof(MyAddAttribute)).OfType<MyAddAttribute>().ToDictionary(
x => x.Name, x => x.Value);
}
}
<!-- in the template -->
<%= Html.TextBox("Name", Model, MyExtensions.GetMyAttributes(Model)) %>
これは簡単ですが、便利/柔軟性はありません。
これは、ここでソリューションを取得するための最もクリーンで最もエレガントでシンプルな方法です。
見事なブログ投稿と、狂った教授のようなカスタムの拡張機能/ヘルパーメソッドを書く際の面倒な過労はありません。
http://geekswithblogs.net/michelotti/archive/2010/02/05/mvc-2-editor-template-with-datetime.aspx
/ Views / Shared / EditorTemplatesフォルダーにあるString.ascxという名前のEditorTemplateを利用する@tjeerdansの回答が本当に気に入りました。これは、この質問に対する最も簡単な答えのようです。しかし、Razor構文を使用したテンプレートが必要でした。さらに、MVC3はデフォルトとして文字列テンプレートを使用しているようです(StackOverflowの質問「文字列のmvc表示テンプレートは整数に使用されます」を参照)。そのため、モデルを文字列ではなくオブジェクトに設定する必要があります。私のテンプレートはこれまでのところ機能しているようです:
@model object
@{ int size = 10; int maxLength = 100; }
@if (ViewData["size"] != null) {
Int32.TryParse((string)ViewData["size"], out size);
}
@if (ViewData["maxLength"] != null) {
Int32.TryParse((string)ViewData["maxLength"], out maxLength);
}
@Html.TextBox("", Model, new { Size = size, MaxLength = maxLength})