@model Fab2ApprovalSystem.ViewModels.ChangeControlViewModel @{ ViewBag.Title = "Edit"; }
@using (Html.BeginForm()) { @Html.AntiForgeryToken() if (Model.ClosedDate == null) { if (ViewBag.IsApprover == "true") {
Description of Change
@Html.TextAreaFor(model => model.ReasonForChange, 15, 30, new { id = "txtReasonForChange", @class = "form-control", style = "font-size: 11px;width: 100%;" })
|
Reason For Change
@Html.TextAreaFor(model => model.ChangeDescription, 15, 30, new { id = "txtChangeDescription", @class = "form-control", style = "font-size: 11px;width: 100%;" })
|
Affected by Change |
|||||||||||||
Generations
|
@(Html.Kendo().MultiSelect() .Name("GenerationIDs") .BindTo(new SelectList(ViewBag.Generations, "GenerationID", "Generation")) .Value(ViewBag.Nothing) ) | @*||||||||||||
Notes:
|
@Html.TextAreaFor(model => model.Notes, 5, 50, new { id = "txtNotes", @class = "k-textbox", style = "width:100%;" }) | ||||||||||||
Part Numbers
|
|
@*||||||||||||
Tool Type
|
@Html.TextAreaFor(model => model.ToolTypes, 5, 50, new { id = "txtToolTypes", @class = "k-textbox", style = "width:100%;" }) | @*||||||||||||
Processes
|
@(Html.Kendo().MultiSelect() .Name("ProcessIDs") .BindTo(new SelectList(ViewBag.Processes, "ProcessID", "Process")) .Value(ViewBag.Nothing) ) | @*||||||||||||
Logistics
|
@(Html.Kendo().MultiSelect() .Name("LogisticsIDs") .BindTo(new SelectList(ViewBag.Logistics, "LogisticsID", "Logistics")) .Value(ViewBag.Nothing) ) | @*