web-dev-qa-db-ja.com

MVC3 DropDownListFor-簡単な例?

MVC3アプリでDropDownListForに問題があります。 StackOverflowを使用してそれらをビューに表示する方法を理解することはできましたが、今では、送信時にビューモデルの対応するプロパティで値をキャプチャする方法がわかりません。これを機能させるには、IDプロパティと値プロパティを持つ内部クラスを作成し、DropDownListForパラメーターの要件を満たすためにIEnumerable<Contrib>を使用する必要がありました。しかし、今、MVC FWは、このドロップダウンで選択された値を、ビューモデルの単純な文字列プロパティにどのようにマップしますか?

public class MyViewModelClass
{
    public class Contrib
    {
        public int ContribId { get; set; }
        public string Value { get; set; }
    }

    public IEnumerable<Contrib> ContribTypeOptions = 
        new List<Contrib>
        {
            new Contrib {ContribId = 0, Value = "Payroll Deduction"},
            new Contrib {ContribId = 1, Value = "Bill Me"}
        };

    [DisplayName("Contribution Type")]
    public string ContribType { get; set; }
}

私のビューでは、次のようにページにドロップダウンを配置します。

<div class="editor-label">
    @Html.LabelFor(m => m.ContribType)
</div>
<div class="editor-field">
    @Html.DropDownListFor(m => m.ContribTypeOptions.First().ContribId, 
             new SelectList(Model.ContribTypeOptions, "ContribId", "Value"))
</div>

フォームを送信すると、ContribTypeは(もちろん)nullです。

これを行う正しい方法は何ですか?

110
Trey Carroll

次のようにする必要があります。

@Html.DropDownListFor(m => m.ContribType, 
                new SelectList(Model.ContribTypeOptions, 
                               "ContribId", "Value"))

どこで:

m => m.ContribType

結果の値が格納されるプロパティです。

163
Sergey Gavruk

私はこれが役立つと思う:コントローラーでリストアイテムと選択された値を取得する

public ActionResult Edit(int id)
{
    ItemsStore item = itemStoreRepository.FindById(id);
    ViewBag.CategoryId = new SelectList(categoryRepository.Query().Get(), 
                                        "Id", "Name",item.CategoryId);

    // ViewBag to pass values to View and SelectList
    //(get list of items,valuefield,textfield,selectedValue)

    return View(item);
}

とビューで

@Html.DropDownList("CategoryId",String.Empty)
7
Praveen M P

DropDownListで動的データをバインドするには、次のことができます。

以下のようにコントローラーでViewBagを作成します

ViewBag.ContribTypeOptions = yourFunctionValue();

次のようなビューでこの値を使用します。

@Html.DropDownListFor(m => m.ContribType, 
    new SelectList(@ViewBag.ContribTypeOptions, "ContribId", 
                   "Value", Model.ContribTypeOptions.First().ContribId), 
    "Select, please")
6
Dilip0165
     @Html.DropDownListFor(m => m.SelectedValue,Your List,"ID","Values")

ここで、値は、選択した値を保存するモデルのオブジェクトです

0
Abdul Aleem