Komplikowanie prymitywu ukrytymi polami w celu wyjaśnienia, czy Fałsz czy Null nie jest zalecane.
Pole wyboru nie jest tym, czego powinieneś używać - tak naprawdę ma tylko jeden stan: zaznaczone . W przeciwnym razie może to być wszystko.
Gdy twoje pole bazy danych ma wartość logiczną ( bool?
) dopuszczającą wartość null , interfejs użytkownika powinien używać przycisków 3-radiowych, gdzie pierwszy przycisk reprezentuje „zaznaczone”, drugi przycisk reprezentuje „nie zaznaczono”, a trzeci przycisk reprezentuje wartość null, niezależnie od semantyki null oznacza. Możesz użyć <select><option>
listy rozwijanej, aby zapisać nieruchomość, ale użytkownik musi kliknąć dwa razy, a wybory nie są tak natychmiastowo jasne.
1 0 null
True False Not Set
Yes No Undecided
Male Female Unknown
On Off Not Detected
RadioButtonList, zdefiniowane jako rozszerzenie o nazwie RadioButtonForSelectList, buduje przyciski opcji, w tym wybraną / zaznaczoną wartość, i ustawia <div class="RBxxxx">
tak, aby można było użyć css, aby ustawić przyciski radiowe w poziomie (display: inline-block), w pionie lub w formie tabeli (display: inline-block; width: 100px;)
W modelu (używam string, string dla definicji słownika jako przykładu pedagogicznego. Możesz użyć bool ?, string)
public IEnumerable<SelectListItem> Sexsli { get; set; }
SexDict = new Dictionary<string, string>()
{
{ "M", "Male"},
{ "F", "Female" },
{ "U", "Undecided" },
};
//Convert the Dictionary Type into a SelectListItem Type
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)
{
// Create a radio button for each item in the list
foreach (SelectListItem item in listOfValues)
{
// Generate an id to be given to the radio button field
var id = string.Format("{0}_{1}", metaData.PropertyName, item.Value);
// Create and populate a radio button using the existing html helpers
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();
}// Create the html string to return to client browser
// e.g. <input data-val="true" data-val-required="You must select an option" id="RB_1" name="RB" type="radio" value="1" /><label for="RB_1">Choice 1</label>
sb.AppendFormat("<div class=\"RB{2}\">{0}{1}</div>", radio, label, rbClassName);
}
}
return MvcHtmlString.Create(sb.ToString());
}
}