このトピックに関する例は見つかりません。コードを書き込もうとしましたが、null モデルを投稿しました。
@model DevExpressMvcApplication2.Models.Customers
@{
ViewBag.Title = "MusteriEkle";
}
@using (Html.BeginForm((string)ViewBag.FormAction, "Home"))
{
<div class="editorContainer">
@Html.DevExpress().TextBox(
settings =>
{
settings.Name = "textBox1";
settings.Width = 170;
settings.Properties.NullText = "Enter your name...";
}
).Bind(Model.customer_name).GetHtml()
</div>
<input type="submit" value="submit" />
}
このトピックに関する例はありますか。forでdevEx要素をhtml.helperとして使いたい
ありがとう