Guest User

Untitled

a guest
Jan 17th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. @Html.CheckBoxFor(model => true, item.TemplateId)
  2.  
  3. @Html.CheckBoxFor(m => m.SomeBooleanProperty, new { checked = "checked" });
  4.  
  5. @Html.CheckBox("templateId", new { value = item.TemplateID, checked = true });
Add Comment
Please, Sign In to add comment