Files
2020-09-20 22:07:13 -04:00

7 lines
361 B
Plaintext

@model MileageTraker.Web.ViewModels.SelectListViewModel
@{
Layout = "~/Views/Shared/EditorTemplates/_FieldLayout.cshtml";
var values = ViewData.ModelMetadata.AdditionalValues;
var optionLabel = values.ContainsKey("OptionLabel") ? (string)values["OptionLabel"] : string.Empty;
}
@Html.DropDownListFor(m => m.Selected, Model.Available, optionLabel)