การรวมฟิลด์ดั้งเดิมกับฟิลด์ที่ซ่อนไว้เพื่อชี้แจงว่าไม่แนะนำให้ใช้ False หรือ Null
ช่องทำเครื่องหมายไม่ใช่สิ่งที่คุณควรใช้ แต่มีเพียงสถานะเดียวเท่านั้น: การยืม มิฉะนั้นอาจเป็นอะไรก็ได้
เมื่อฟิลด์ฐานข้อมูลของคุณเป็นบูลีนที่เป็นโมฆะ ( bool?
) UX ควรใช้ 3-Radio Buttons โดยที่ปุ่มแรกแสดงถึง "Checked" ของคุณปุ่มที่สองหมายถึง "Not Checked" และปุ่มที่สามแทนค่า null ของคุณไม่ว่าจะเป็นความหมายใดก็ตาม หมายถึงโมฆะ คุณสามารถใช้รายการ<select><option>
แบบเลื่อนลงเพื่อบันทึกอสังหาริมทรัพย์ได้ แต่ผู้ใช้ต้องคลิกสองครั้งและตัวเลือกต่างๆยังไม่ชัดเจนในทันที
1 0 null
True False Not Set
Yes No Undecided
Male Female Unknown
On Off Not Detected
RadioButtonList กำหนดเป็นส่วนขยายชื่อ RadioButtonForSelectList สร้างปุ่มตัวเลือกสำหรับคุณรวมทั้งค่าที่เลือก / ตรวจสอบและตั้งค่า <div class="RBxxxx">
เพื่อให้คุณสามารถใช้ css เพื่อทำให้ปุ่มตัวเลือกของคุณเป็นแนวนอน (display: inline-block), แนวตั้งหรือ ในรูปแบบตาราง (display: inline-block; width: 100px;)
ในโมเดล (ฉันใช้สตริงสตริงสำหรับคำจำกัดความตามพจนานุกรมเป็นตัวอย่างการสอนคุณสามารถใช้บูล?, สตริง)
public IEnumerable<SelectListItem> Sexsli { get; set; }
SexDict = new Dictionary<string, string>()
{
{ "M", "Male"},
{ "F", "Female" },
{ "U", "Undecided" },
};
Sexsli = SexDict.Select(k =>
new SelectListItem
{
Selected = (k.Key == "U"),
Text = k.Value,
Value = k.Key.ToString()
});
<fieldset id="Gender">
<legend id="GenderLegend" title="Gender - Sex">I am a</legend>
@Html.RadioButtonForSelectList(m => m.Sexsli, Model.Sexsli, "Sex")
@Html.ValidationMessageFor(m => m.Sexsli)
</fieldset>
public static class HtmlExtensions
{
public static MvcHtmlString RadioButtonForSelectList<TModel, TProperty>(
this HtmlHelper<TModel> htmlHelper,
Expression<Func<TModel, TProperty>> expression,
IEnumerable<SelectListItem> listOfValues,
String rbClassName = "Horizontal")
{
var metaData = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);
var sb = new StringBuilder();
if (listOfValues != null)
{
foreach (SelectListItem item in listOfValues)
{
var id = string.Format("{0}_{1}", metaData.PropertyName, item.Value);
var label = htmlHelper.Label(id, HttpUtility.HtmlEncode(item.Text));
var radio = String.Empty;
if (item.Selected == true)
{
radio = htmlHelper.RadioButtonFor(expression, item.Value, new { id = id, @checked = "checked" }).ToHtmlString();
}
else
{
radio = htmlHelper.RadioButtonFor(expression, item.Value, new { id = id }).ToHtmlString();
}
sb.AppendFormat("<div class=\"RB{2}\">{0}{1}</div>", radio, label, rbClassName);
}
}
return MvcHtmlString.Create(sb.ToString());
}
}