Enum RadioButtonFor Editor Template set value(枚举 RadioButtonFor 编辑器模板设置值)
问题描述
基于 this 问题,我实现了 RadioButtonFor 编辑器模板.我工作得很好,但目前你无法传递你想要选择的值.
Based on this question, I implemented a RadioButtonFor Editor Template. I works great but currently you cannot pass the value you want selected.
EnumRadioButtonList.cshtml (Editor Template):
@model Enum
@foreach (var value in Enum.GetValues(Model.GetType()))
{
if ((int)value > 0)
{
@Html.RadioButtonFor(m => m, (int)value)
@Html.Label(value.ToString())
}
}
我从 View 中调用它:
I call it from View with:
@Html.EditorFor(m => m.QuestionResponse, "EnumRadioButtonList")
如何传递值 QuestionResponse (enum) 以便选择单选按钮?
How do I pass the value QuestionResponse (enum) so that the radio button is selected?
推荐答案
您可以创建一个自定义的 html 帮助程序,它将提供 2 路绑定
You can create a custom html helper which will give 2-way binding
namespace YourAssembly.Html
{
public static class EnumHelpers
{
public static MvcHtmlString EnumRadioButtonListFor<TModel, TValue>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TValue>> expression)
{
ModelMetadata metaData = ModelMetadata.FromLambdaExpression(expression, helper.ViewData);
string name = ExpressionHelper.GetExpressionText(expression);
if (!metaData.ModelType.IsEnum)
{
throw new ArgumentException(string.Format("The property {0} is not an enum", name));
}
string[] names = Enum.GetNames(metaData.ModelType);
StringBuilder html = new StringBuilder();
foreach(string value in names)
{
string id = string.Format("{0}_{1}", name, value);
html.Append("<div>");
html.Append(helper.RadioButtonFor(expression, value, new { id = id }));
html.Append(helper.Label(id, value));
html.Append("</div>");
}
return MvcHtmlString.Create(html.ToString());
}
}
}
添加对 web.config 的 <namespaces>
部分的引用
add a reference to the <namespaces>
section of web.config
<add namespace="YourAssembly.Html "/>
并将其用作
@Html.EnumRadioButtonListFor(m => m.QuestionResponse)
这篇关于枚举 RadioButtonFor 编辑器模板设置值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:枚举 RadioButtonFor 编辑器模板设置值
- C# 中多线程网络服务器的模式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01