こんにちは、ドロップダウンリストにチェックボックスを追加しようとしています。私はそれをグーグルで検索し、MVC3でやろうとしているように、asp.netで例を取得しています。私のフォーム編集では、ユーザーはドロップダウン リストの値を確認できる必要があります。たとえば、以下の製造リストのフォームでは、現在、その値に関連付けられたチェックボックスを指定する必要がある値を表示しているだけです。
私のフォーム:
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<EmsAdmin.Models.User>" %>
<%@ Import Namespace="EmsAdmin.Models" %>
<script type="text/javascript">
//<![CDATA[
// Focus on the first input box for the site
$(document).ready(function () {
$('#UserId').focus();
});
//]]>
</script>
<%= Html.ValidationSummary("Edit was unsuccessful. Please correct the errors and try again.") %>
<% using (Html.BeginForm()) {%>
<%= Html.AntiForgeryToken() %>
<p>
<%= Html.LabelFor(e=>e.Id,"Id:") %>
<%: Model.Id %>
</p>
<p>
<%= Html.LabelFor(e=>e.PersonId,"Person:") %>
<%= Html.DropDownListFor(e => e.PersonId, (SelectList)ViewData["allPersons"], "Select a person", new { @style = "width: 255px;" })%>
<%= Html.ValidationMessageFor(e=>e.Person,"") %>
</p>
<p>
<%= Html.LabelFor(e=>e.Email,"Email:") %>
<%= Html.TextBoxFor(e => e.Email, new { @style = "width:250px;" })%>
<%= Html.ValidationMessageFor(e=>e.Email,"") %>
</p>
<%= Html.LabelFor(e=>e.Approve,"Aprrove User:") %>
<%= Html.CheckBoxFor(e=> e.Approve,Model.Approve) %><span> Switch this on if you want to add regitrar </span>
<%= Html.ValidationMessageFor(e=>e.Approve,"") %>
</p>
<p>
<%= Html.LabelFor(e=>e.ManufacturerDescription,"Brand:") %>
<%= Html.DropDownListFor(e => e.ManufacturerDescription, (SelectList)ViewData["allManufacturers"], "Select Brands", new { @style = "width: 255px;" })%>
<%= Html.ValidationMessageFor(e=>e.ManufacturerDescription,"") %>
</p>
<p>
<%= Html.LabelFor(e=>e.CountryName,"Country:") %>
<%= Html.DropDownListFor(e => e.CountryName, (SelectList)ViewData["allCountries"], "Select Countries", new { @style = "width: 255px;" })%>
<%= Html.ValidationMessageFor(e=>e.CountryName,"") %>
</p>
<p>
<%= Html.LabelFor(e=>e.Role,"Role:") %>
<%= Html.DropDownListFor(e => e.Role, (SelectList)ViewData["allRoles"], "Select Roles", new { @style = "width: 255px;" })%>
<%= Html.ValidationMessageFor(e=>e.Role,"") %>
</p>
<p>
<input type="submit" value="Save" />
<%= Html.ActionLink("Cancel","Details",new {id=Model.Id},new {@title="exit without saving"}) %>
</p>
<% } %>