Created
June 23, 2011 08:47
-
-
Save DylanLacey/1042163 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<tr> | |
@using (Ajax.BeginForm("Create", new AjaxOptions{HttpMethod = "Post", | |
InsertionMode = InsertionMode.InsertAfter, | |
UpdateTargetId = "BlacklistGrid tbody" | |
})){ | |
<td>@Html.HiddenFor(b => Model.shift_id) | |
@Html.EditorFor(b => Model.car)</td> | |
<td>@Html.EditorFor(b => Model.reason)</td> | |
<td><input type="submit" value="Add New"/> </td> | |
}</tr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment