Skip to content

Instantly share code, notes, and snippets.

@vpodolyan
Created August 22, 2014 07:42
Show Gist options
  • Select an option

  • Save vpodolyan/de15b552f26fc08b943a to your computer and use it in GitHub Desktop.

Select an option

Save vpodolyan/de15b552f26fc08b943a to your computer and use it in GitHub Desktop.
<table style="text-align: left;">
@for (int i = 0; i < Model.Roles.Count - 1; i++)
{
@Html.HiddenFor(m => m.Roles[i].Id)
<tr>
<th>
@Html.CheckBoxFor(m => m.Roles[i].Selected)
</th>
<th>
@Html.HiddenFor(m => m.Roles[i].Name)
@Html.DisplayFor(m => m.Roles[i].Name)
</th>
</tr>
}
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment