0

とてもイライラします!!!!

最初の表示では、通貨は正常に表示されますが、値を編集すると書式設定されません。説明するために新しいプロジェクトをセットアップします。

    public class TestViewModel
{
    [DisplayName("Text Box For")]
    public decimal Cost1 { get; set; }

    [DisplayName("Editor For")]
    [DisplayFormat(DataFormatString = "{0:C}", ApplyFormatInEditMode = true)]
    public decimal Cost2 { get; set; }
}

@model EditorForTest.Models.TestViewModel
<br/>
@Html.LabelFor(m => m.Cost1)
@Html.TextBoxFor(m => m.Cost1, new { Value = String.Format("{0:C}", Model.Cost1) })
<br/>
@Html.LabelFor(m => m.Cost2)
@Html.EditorFor(m => m.Cost2)
<br/>

    public ActionResult Test()
    {
        return View(CurrentTest);
    }

    private static TestViewModel _currentTest;

    private static TestViewModel CurrentTest
    {
        get { return _currentTest ?? (_currentTest = GetNewTest()); }
        set { _currentTest = value; }
    }

    public static TestViewModel GetNewTest()
    {
        TestViewModel testViewModel = new TestViewModel();

        testViewModel.Cost1 = 1234;
        testViewModel.Cost2 = 1234;

        return testViewModel;
    }

開くと問題ないようです。

ここに画像の説明を入力

ただし、編集すると、書式設定が失われます。

ここに画像の説明を入力

私は何を間違っていますか?????

4

1 に答える 1