- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有多个下拉列表的添加/编辑 View ,所有内容都来自同一个选择列表。当我尝试填充 View 以进行编辑时,所有下拉列表都选择了与第一个相同的选项。有没有解决的办法?我不想使用多个选择列表,因为它们都具有相同的内容。
大多数下拉列表是从一个列表创建的,每个项目都有一个下拉列表。这是 View 的第一部分,它不是从项目列表创建的。
<div class="control-group">
@Html.LabelFor(model => model.FirstRound, new { @class = "control-label" })
<div class="controls">
@Html.DropDownListFor(model => Model.FirstRound.Id, Model.Difficulties, new { @class = "span3 combobox"})
@Html.TextBoxFor(model => Model.FirstRound.Value, new { @class = "input-xlarge span1 sec-val", @readonly = "readonly"})
@Html.ValidationMessageFor(model => model.FirstRound.Value, null, new { @class = "help-inline" })
</div>
</div>
这是我循环项目列表以创建下拉列表的部分。
@{int counter = 0;}
@foreach (var item in Model.SecondRound)
{
<div class="control-group">
@Html.LabelFor(model => model.SecondRound, new { @class = "control-label" })
<div class="controls second-round">
@Html.DropDownListFor(model => model.SecondRound[counter].Id, Model.Difficulties, new { @class = "span3 combobox", @id = "SecondRound[" + counter + "].Id" })
@Html.TextBoxFor(model => Model.SecondRound[counter].Value, new { @class = "input-xlarge span1 sec-val", @readonly = "readonly"})
@Html.ValidationMessageFor(model => Model.SecondRound[counter].Value, null, new { @class = "help-inline" })
</div>
</div>
<hr />
counter = counter + 1;
}
这是我的 View 模型
public class AddTariffTrampetVM
{
public string Team { get; set; }
[HiddenInput(DisplayValue=false)]
public int NumberOfGymnasts { get; set; }
[Display(Name="Difficulty")]
public RoundVM FirstRound { get; set; }
[Range(0.001d, 100.0d, ErrorMessage="You need to pick a difficulty for the first round!")]
public decimal FirstTotalValue { get; set; }
[Display(Name = "Difficulty")]
public IList<RoundVM> SecondRound { get; set; }
[Range(0.001d, 100.0d, ErrorMessage = "You need to pick difficulties for the second round!")]
public decimal SecondTotalValue { get; set; }
[Display(Name = "Difficulty")]
public IList<RoundVM> ThirdRound { get; set; }
[Range(0.001d, 100.0d, ErrorMessage = "You need to pick difficulties for the third round!")]
public decimal ThirdTotalValue { get; set; }
public List<SelectListItem> Difficulties { get; set; }
public AddTariffTrampetVM() : this(6)
{
}
public AddTariffTrampetVM(int numOfGymnast)
{
NumberOfGymnasts = numOfGymnast;
FirstRound = new RoundVM { Id = 0, Value = 0M };
SecondRound = new List<RoundVM>();
ThirdRound = new List<RoundVM>();
for (int i = 0; i < NumberOfGymnasts; i++)
{
SecondRound.Add(new RoundVM());
ThirdRound.Add(new RoundVM());
}
}
}
public class RoundVM {
public int Id { get; set; }
[Range(0.001d, 100.0d, ErrorMessage="Your need to pick a difficulty!")]
public decimal Value { get; set; }
public RoundVM()
{
Value = 0M;
}
}
这是我填写表格的编辑操作
public ActionResult Edit(int id)
{
var item = ServiceTariff.GetTariffTrampet(id);
var model = Mapper.Map<TariffTrampet, AddTariffTrampetVM>(item);
model.Difficulties = ServiceDifficulty.GetSelectListElementTrampet().ToList();
return View("Add", model);
}
希望有人能帮我解决这个问题。如果您需要更多代码,请发表评论。
最佳答案
而不是仅仅提供 Model.Difficulties
到 DropDownListFor
助手尝试传递它:
new SelectList(Model.Difficulties, object selectedValue)
或另一个允许您指定值和文本字段的重载:
new SelectList(Model.Difficulties, string dataValueField, string dataTextField, object selectedValue)
使用其中之一作为 DropDownListFor
的第二个参数 helper 。创建 SelectList
来自 List<SelectListItem>
允许您设置最初选择的值。
关于asp.net - 多个Html.dropdownlistfor同一个selectlist,设置选中值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18356924/
我正在使用 WatiN 进行一些网络测试,但遇到了选择列表的问题。 我必须先浏览几页,添加一个“类别”元素,该元素将填充所述麻烦的选择列表。 我已经能够使用 ByValue 从列表中轻松选择一个元素,
我是 javascript 的新手,目前正在研究 knockoutjs 库。这是我的问题。我有一个从可观察数组填充的选择列表。当我从选择列表中选择一个值并单击保存按钮时,我希望将该值保存在一个变量中,
我有这个选择列表: Please select a parent category New Store Extensions Remodel Bespoke Signage
我正在尝试在选择列表中设置多个值: SelectList List = new SelectList(MyListItems, "valField", "dataField", ); 我使用什么对象/
我的 View 中有一堆下拉列表,例如这个: @Html.DropDownListFor(model => model.Process, Model.ProcessList) 他们都接受一个Selec
我试图在 dropdownlist 文本中显示多个值。示例如下。 SelectList(Parts, "pno", "pcode"+"pname") 在哪里 pno 是零件编号。 pcode 是部分代
我目前在获取 SelectList 时遇到了一些问题默认为定义的初始值。我创建了一个片段来演示这个问题:https://dotnetfiddle.net/ozroT1 本质上,我希望我的 DropDo
在 MVC4 中: 我的模型中有以下用于下拉列表的属性: public SelectList Subjects { get; set; } 我在页面加载时在我的 Index() 操作中设置 Subje
这可能真的很简单...我正在尝试创建一个 SelectList,其中包含从当前年份开始到 2008 年的年份。情况总是如此。例如,在 2020 年,我的 SelectList 将包含 2020 - 2
我有以下操作方法: public JsonResult LoadSitesByCustomerName(string customername) { var customerlist = re
假设我有一个这样的枚举(仅作为示例): public enum Direction{ Horizontal = 0, Vertical = 1, Diagonal = 2 }
所以我在这个方法中生成了一个 SelectList : public static SelectList HolidayDays() { SelectList retval = Generat
我有一个 IDictionary,现在我想在选择列表中使用这些值。我该怎么做呢? 谢谢。 最佳答案 刚设置"Value"和 "Key"为 dataValueField和 dataTextField .
请帮忙使用 Ajax 填充 SelectList 和选项组吗? 我已正确编码添加项目,但不确定如何添加选项组。 这是我的有效 Ajax 代码: var category = $(this).val()
我在通过 QueryOver 选择时遇到一些问题,这是我的模型类: public class BaseModel { public virtual int Id { get; set; }
所以下面的代码为我提供了一个下拉框,其中包含来自司机的姓名列表,但它只是名字,我也有姓氏,我该怎么做。我的代码是... @Html.DropDownListFor(model => model.Dri
我刚刚开始在 MVC 项目中学习 AutoMapper。我有一个基本实体“Attendee”,其中包含一个性别字符串字段(可能值为“M”或“F”)。 我已经在 Attendee 和 AttendeeE
我正在努力创建一个包含下拉列表的 View 。为了生成选择列表项,我编写了一个方法来返回 SelectListItem 的列表。此下拉列表所需 - 其中一个具有 Selected 属性设置为 true
我有一个具有以下属性的类。它从现有列表构造一个 SelectList 对象,然后设置所选项目。 public SelectList ProviderTypeList { get {
我正在尝试为我的 Controller 中的下拉菜单设置选定值,并通过 ViewBag 将其传递到我的 View 。当我调试时,所有正确的值都被传递给 Controller 和 View ,但当它
我是一名优秀的程序员,十分优秀!