diff --git a/src/Orchard.Web/Modules/Orchard.Fields/Views/EditorTemplates/Fields/Enumeration.Edit.cshtml b/src/Orchard.Web/Modules/Orchard.Fields/Views/EditorTemplates/Fields/Enumeration.Edit.cshtml index 1b5ba2cdb..bf63c5e00 100644 --- a/src/Orchard.Web/Modules/Orchard.Fields/Views/EditorTemplates/Fields/Enumeration.Edit.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Fields/Views/EditorTemplates/Fields/Enumeration.Edit.cshtml @@ -1,28 +1,51 @@ @model Orchard.Fields.Fields.EnumerationField + @using Orchard.Fields.Settings; + @{ var settings = Model.PartFieldDefinition.Settings.GetModel(); - string[] options = (!String.IsNullOrWhiteSpace(settings.Options)) ? settings.Options.Split(new string[] { System.Environment.NewLine }, StringSplitOptions.None) : new string[] { T("Select an option").ToString() }; + string[] options = (!String.IsNullOrWhiteSpace(settings.Options)) ? + settings.Options.Split(new string[] { System.Environment.NewLine }, StringSplitOptions.None) + : new string[] { T("Select an option").ToString() }; } +
@switch (settings.ListMode) { case ListMode.Dropdown: - @Html.DropDownListFor(m => m.Value, new SelectList(options, Model.SelectedValues.FirstOrDefault()), settings.Required ? new { required = "required" } : null) + @Html.DropDownListFor( + m => m.Value, + new SelectList(options, Model.SelectedValues.FirstOrDefault()), + settings.Required ? new { required = "required" } : null) break; case ListMode.Radiobutton: foreach (var option in options) { if (string.IsNullOrWhiteSpace(option)) { - } + + } else { - } + + } } break; case ListMode.Listbox: - @Html.ListBoxFor(m => m.SelectedValues, new MultiSelectList(options, Model.SelectedValues), settings.Required ? new { required = "required" } : null) + @Html.ListBoxFor( + m => m.SelectedValues, + new MultiSelectList(options, Model.SelectedValues), + settings.Required ? new { required = "required" } : null) break; case ListMode.Checkbox: @@ -32,7 +55,9 @@ index++; if (!string.IsNullOrWhiteSpace(option)) {
- +
}