2

このトピックに関する例は見つかりません。コードを書き込もうとしましたが、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として使いたい

ありがとう

4

2 に答える 2

2

[HttpPost] コントローラ アクションで DevExpressEditorsBinder を使用し、TextBox.Name プロパティ = モデル フィールド/プロパティを設定する必要があります。

于 2012-07-31T16:54:28.807 に答える
0
@Html.DevExpress().TextBoxFor(model => model.Code,
settings => {
settings.Name = "txtCode";
settings.Width = 170;
settings.Properties.NullText = "000"; }).GetHtml()
于 2013-12-31T05:07:42.567 に答える