Guest User

Untitled

a guest
Jan 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. @Html.DropDownListFor(model => model.TransferAvailibilities.First().CancellationID,
  2. (ViewBag.CancellationSchema == null ? null :
  3. (IEnumerable<SelectListItem>)ViewBag.CancellationSchema), new { @class = "field large" })
  4.  
  5. @Html.DropDownListFor(x => x.intClient, new SelectList(Model.Clients, "ClientId", "ClientName"), string.Empty);
Add Comment
Please, Sign In to add comment