@Html.DropDownListFor(model => model.TransferAvailibilities.First().CancellationID,
(ViewBag.CancellationSchema == null ? null :
(IEnumerable<SelectListItem>)ViewBag.CancellationSchema), new { @class = "field large" })
And error:
There is no ViewData item of type 'IEnumerable' that has the key 'CancellationID'.
I know that but i will bind data with ajax when i need. And my lambda not work or something for DropDownListFor...