Files
LeafWeb/WebCms/Views/Shared/EditorTemplates/Boolean.cshtml
T

17 lines
264 B
Plaintext

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