在我的MVC4应用程序中,我有两个模型User
和Schedule
,如下所示:
public class User {
public int UserId { get; set; }
public string Name { get; set; }
public string FullName { get; set; }
public string Email { get; set; }
public bool isAvailable { get; set; }
}
public class Schedule
{
public int ScheduleId{ get; set; }
public DateTime Date { get; set; }
public int UserId { get; set; }
public virtual User User { get; set; }
}
现在我想创建一个页面,其中显示一个表格,其中包含本月的日期以及当天的DropDownLists
(每天),其中所有用户isAvailable
为真名单。将使用此页面以便管理员可以制定计划(我也将对如何实施此计划进行改进)并在每个工作日选择一个用户。我希望这样做,以便在一个DropDownList
中选择一个用户后,该用户就会从另一个DropDownLists
中消失。
Controller和View现在看起来如下,控制器:
public ActionResult Schedule()
{
ViewBag.UserId = new SelectList(db.Users, "UserId", "FullName");
return View();
}
查看:
@model IEnumerable<seashell_brawl_corvee.Models.Schedule>
@{
ViewBag.Title = "Schedule";
}
<fieldset>
<legend>@ViewBag.Title</legend>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<table class="table">
<thead>
<tr>
<th>Date
</th>
<th>Select person
</th>
</tr>
</thead>
@{ DateTime dt = DateTime.Now; }
@for (double i = 0.0; i < 60.0; i++)
{
dt = dt.AddDays(1);
if (dt.Date.DayOfWeek != DayOfWeek.Saturday &&
dt.Date.DayOfWeek != DayOfWeek.Sunday)
{
<tbody>
<tr>
<td>
@dt.Date.ToLongDateString()
</td>
<td>
@Html.DropDownList("UserId", String.Empty)
</td>
</tr>
</tbody>
}
else
{
<tbody>
<tr></tr>
</tbody>
}
}
</table>
@TODO: Submit button and controller POST action that reads the dates and names
from the dropdownlists, puts them into arrays and then into the database.
}
</fieldset>
我知道我需要JavaScript / JSON才能使DropDownLists彼此依赖,并且一旦选择了名称就不再显示,但我不知道我将如何完成此任务。如果有人能帮助我,我将非常感激!
答案 0 :(得分:2)
我有一个使用JQuery的方法,请查看此示例: http://jsfiddle.net/vt3Ma/4/
使用focus()事件将恢复当前选项值和2个隐藏字段中的文本
$('.ddl').focus(function(){
$("#oldValue").val($(this).val());
$("#oldText").val($("option:selected",$(this)).text());
});
然后在change()事件: -
1-将下拉列表的旧更改选项添加到其他下拉列表,因为之前选择的选项现在可供选择。
$(this).prepend("<option value='"+$("#oldValue").val()+"'>"+$("#oldText").val()+"</option>");
2-将从所有其他下拉列表中删除新选择的选项
$("option[value='" + current.val() + "']",$(this)).remove();