Files
LeafWeb/WebCms/Views/Shared/EditorTemplates/Boolean.cshtml
T
poprhythm 8452a9cce0 Add registration workflow
Update unobtrusive Validation
2020-01-10 14:52:11 -05:00

17 lines
289 B
Plaintext

@model Boolean?
@{
Layout = "_FieldLayout.cshtml";
var htmlAttributes = new RouteValueDictionary();
if (ViewBag.@class != null)
{
htmlAttributes.Add("class", ViewBag.@class);
}
}
@Html.CheckBox(
"",
Model.HasValue && Model.Value,
htmlAttributes)