Using @Html.CheckBoxFor in EditorTemplate not showing checkbox on View MVC 5 code example
Example 1: html checkboxfor is not visible
@Html.EditorFor(model => model.Active, new { htmlAttributes = new { style = "opacity: 1" } })
Example 2: html checkboxfor is not visible
input[type="checkbox"] {
display: none;
}