check box not displaying in asp.net mvc 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;
}