EnVisageOnline/Main/Source/EnVisage/Views/Shared/EditorTemplates/UDFValueCollection.cshtml

13 lines
336 B
Plaintext

@using EnVisage.Code
@model EnVisage.Models.UDFValueCollection
@Html.HiddenFor(model => model.Id)
@Html.HiddenFor(model => model.Type)
<div class="col-sm-2 ">
<div class="form-group no-margin-hr">
@Html.EditorFor(model => model.Values, Utils.GetEnumDisplay(typeof(UserDefinedFieldType), Model.Type))
</div>
</div>