Browse Source

guff fixed

confirmation-email
Milad Karbasizadeh 11 years ago
parent
commit
18646f6201
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      Sevomin.WebFrontend/Views/Shared/JobParameterViewModel.cshtml

+ 3
- 3
Sevomin.WebFrontend/Views/Shared/JobParameterViewModel.cshtml View File

@ -1,6 +1,6 @@
@model Sevomin.Models.JobParameterViewModel
@{ string paramId = string.Format("value-", Model.ParameterId.ToString());
string muscowId = string.Format("muscow-", Model.ParameterId.ToString()); }
@{ string paramId = string.Format("value-{0}", Model.ParameterId.ToString());
string muscowId = string.Format("muscow-{0}", Model.ParameterId.ToString()); }
@Html.Label(Model.ParameterName)
<div class="form-group">
@switch (Model.DisplayMethod)
@ -26,4 +26,4 @@
{
@Html.DropDownList(muscowId, new SelectList(new List<SelectListItem>() { new SelectListItem{ Value = "4", Text = "Must"}, new SelectListItem{ Value = "3", Text = "Should"}, new SelectListItem{ Value = "2", Text = "Could"}, new SelectListItem{ Value = "1", Text = "Wont"}}), new { @class = "form-control" })
}
</div>
</div>

Loading…
Cancel
Save