@model Sevomin.Models.DovominParameterViewModel @{ string paramId = string.Format("value-{0}", Model.ParameterId.ToString()); }
@Html.Label(Model.ParameterName) @if (!string.IsNullOrWhiteSpace(Model.CommentDovomin)) { }
@switch (Model.DisplayMethod) { case 1: @Html.TextBox(paramId, Model.StringValue, new { @class = "form-control" }) break; case 2: @Html.TextArea(paramId, Model.StringValue, new { @class = "form-control" }) break; case 3: /* validator bezar baraye numeric gereftan */ @Html.TextBox(paramId, Model.StringValue, new { @class = "form-control" }) break; case 4: @Html.DropDownList(paramId, new SelectList(Model.ParameterValues, "item1", "item2", Model.StringValue), "انتخاب کنید ...", new { @class = "form-control" }) break; default: @MvcHtmlString.Empty break; }