Não é recomendado complicar uma primitiva com campos ocultos para esclarecer se False ou Null.
A caixa de seleção não é o que você deve usar - na verdade, ela só tem um estado: marcada . Caso contrário, pode ser qualquer coisa.
Quando o campo do seu banco de dados é um booleano anulável ( bool?
), o UX deve usar 3-Radio Buttons, onde o primeiro botão representa seu "Checked", o segundo botão representa "Not Checked" e o terceiro botão representa seu null, qualquer que seja a semântica de significa nulo. Você poderia usar uma <select><option>
lista suspensa para salvar o imóvel, mas o usuário precisa clicar duas vezes e as opções não são tão claras instantaneamente.
1 0 null
True False Not Set
Yes No Undecided
Male Female Unknown
On Off Not Detected
O RadioButtonList, definido como uma extensão chamada RadioButtonForSelectList, cria os botões de opção para você, incluindo o valor selecionado / marcado, e define o <div class="RBxxxx">
para que você possa usar css para fazer seus botões de opção ficarem na horizontal (display: bloco em linha), vertical ou em estilo de tabela (exibição: bloco embutido; largura: 100px;)
No modelo (estou usando string, string para a definição do dicionário como um exemplo pedagógico. Você pode usar 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());
}
}