我已经创建了一个编辑器模板,用于表示从动态下拉列表中进行选择,除了验证之外,它应该正常工作,我一直无法弄清楚。如果模型设置了[Required]
属性,我希望如果选择了默认选项则无效。
必须表示为下拉列表的视图模型对象为Selector
:
public class Selector
{
public int SelectedId { get; set; }
public IEnumerable<Pair<int, string>> Choices { get; private set; }
public string DefaultValue { get; set; }
public Selector()
{
//For binding the object on Post
}
public Selector(IEnumerable<Pair<int, string>> choices, string defaultValue)
{
DefaultValue = defaultValue;
Choices = choices;
}
}
编辑器模板如下所示:
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<select class="template-selector" id="<%= ViewData.ModelMetadata.PropertyName %>.SelectedId" name="<%= ViewData.ModelMetadata.PropertyName %>.SelectedId">
<%
var model = ViewData.ModelMetadata.Model as QASW.Web.Mvc.Selector;
if (model != null)
{
%>
<option><%= model.DefaultValue %></option><%
foreach (var choice in model.Choices)
{
%>
<option value="<%= choice.Value1 %>"><%= choice.Value2 %></option><%
}
}
%>
</select>
我可以通过这样的视图调用它来实现它(Category
是Selector
):
<%= Html.ValidationMessageFor(n => n.Category.SelectedId)%>
但是它显示了未提供正确数字的验证错误,并且如果我设置了Required
属性则无关紧要。
答案 0 :(得分:2)
我找到了一个解决方案,使用自定义验证规则here对隐藏字段进行验证。使用此方法,您可以轻松地将自定义验证添加到任意类型。
答案 1 :(得分:0)
为什么你的编辑器模板没有强类型?
<%@ Control Language="C#"
Inherits="System.Web.Mvc.ViewUserControl<QASW.Web.Mvc.Selector>" %>
为什么不使用DropDownListFor帮助器:
<%= Html.DropDownListFor(
x => x.SelectedId,
new SelectList(Model.Choices, "Value1", "Value2")
)%>
要避免魔术字符串,您可以将ChoicesList属性添加到视图模型中:
public IEnumerable<SelectListItem> ChoicesList
{
get
{
return Choices.Select(x => new SelectListItem
{
Value = x.Value1.ToString(),
Text = x.Value2
});
}
}
并将你的助手绑定到它:
<%= Html.DropDownListFor(x => x.SelectedId, Model.ChoicesList) %>