0

私はいくつかの基本的なドロップダウン ボックスを機能させることに取り組んでいますが、現在私が抱えている唯一の問題は、TTTime のインデックス ビューに、その値の文字列 "proj_code" ではなく、選択した値の Id が表示されることです。モデルからコントローラーとビューを自動的に生成し、それらを編集して proj_code フィールドにドロップダウンを表示しました。コードの関連部分は次のとおりです。他に役立つものがあるかどうかを尋ねてください。

ドロップダウンの TTTime コントローラー コード:

    public ActionResult Details(int id = 0)
    {
        TTTime tttime = db.TTTime.Find(id);
        if (tttime == null)
        {
            return HttpNotFound();
        }
        var query = from c in db.TTSites select c;
        ViewBag.proj_code = new SelectList(query, "ID", "client_id", tttime.proj_code);
        return View(tttime);
    }

    //
    // GET: /Time/Create

    public ActionResult Create()
    {
        TTTime tttime = new TTTime();
        tttime.CreatedDate = DateTime.Now;
        var query = from c in db.TTSites select c;
        ViewBag.proj_code = new SelectList(query, "ID", "client_id");
        return View(tttime);
    }

cust_id のビュー コードを作成/編集/削除:

    <div class="editor-label">
        @Html.LabelFor(model => model.proj_code)
    </div>
    <div class="editor-field">
        @Html.DropDownList("proj_code", String.Empty)
        @Html.ValidationMessageFor(model => model.proj_code)
    </div>

id 値を与えるだけで、proj_code 文字列を表示するインデックス ビュー コード:

    @model IEnumerable<TimeTracker.Models.TTTime>

@{
ViewBag.Title = "Index";
}

<h2>Index</h2>

<p>
    @Html.ActionLink("Create New", "Create")
</p>
<table>
<tr>
    <th>
        @Html.DisplayNameFor(model => model.CreatedDate)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.employee)
    </th>
    </th>
    <th>
        @Html.DisplayNameFor(model => model.hrs_calc)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.cust_id)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.description)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.proj_code)
    </th>
    <th>
        @Html.DisplayNameFor(model => model.type)
    </th>
    <th></th>
</tr>

@foreach (var item in Model) {
<tr>
    <td>
        @Html.DisplayFor(modelItem => item.CreatedDate)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.employee)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.hrs_calc)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.cust_id)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.description)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.proj_code)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.type)
    </td>
    <td>
        @Html.ActionLink("Edit", "Edit", new { id=item.ID }) |
        @Html.ActionLink("Details", "Details", new { id=item.ID }) |
        @Html.ActionLink("Delete", "Delete", new { id=item.ID })
    </td>
</tr>
}

4

1 に答える 1