My Views/Shared/EditorTemplates/Boolean.cshtml goes both ways, handling nullable and regular checkboxes.
@model bool?
@{
if (ViewData.ModelMetadata.IsNullableValueType) {
<text><div class="RB"></text>
Dictionary<string, object> yesAttrs = new Dictionary<string, object>();
Dictionary<string, object> noAttrs = new Dictionary<string, object>();
Dictionary<string, object> nullAttrs = new Dictionary<string, object>();
yesAttrs.Add("id", ViewData.TemplateInfo.GetFullHtmlFieldId("") + "Yes");
noAttrs.Add("id", ViewData.TemplateInfo.GetFullHtmlFieldId("") + "No");
nullAttrs.Add("id", ViewData.TemplateInfo.GetFullHtmlFieldId("") + "n/a");
if (Model.HasValue && Model.Value)
{
yesAttrs.Add("checked", "checked");
}
else if (Model.HasValue && !Model.Value)
{
noAttrs.Add("checked", "checked");
}
else
{
nullAttrs.Add("checked", "checked");
}
@Html.RadioButtonFor(x => x, "true", yesAttrs) <label for="@(ViewData.TemplateInfo.GetFullHtmlFieldId(""))Yes">Yes</label>
@Html.RadioButtonFor(x => x, "false", noAttrs) <label for="@(ViewData.TemplateInfo.GetFullHtmlFieldId(""))No">No</label>
@Html.RadioButtonFor(x => x, "", nullAttrs) <label for="@(ViewData.TemplateInfo.GetFullHtmlFieldId(""))NA" class="nostrong" title="Unknown or To Be Determined">tbd</label>
@:</div>
}
else {
ModelState state = ViewData.ModelState[ViewData.ModelMetadata.PropertyName];
bool value = Model ?? false;
if (state != null && state.Errors.Count > 0) {
<div class="input-validation-error" style="float: left"></div>
}else{
@Html.CheckBox("", value)
}
}
}
Dropdownlists for only 2-3 select items is inconsiderate to users because they require 2-clicks whereas radio buttons require only one click --unless you don't have the real estate. When your customers/users haven't made a decision, don't want to make one, don't think you knowing the answer is any of your business, or need to unset true/1/on/positive or false/0/off/negative because neither is accurate, the 3rd option for a nullable boolean can represent To Be Determined (tbd), not set, unknown, or not applicable (n/a).