@model Fab2ApprovalSystem.ViewModels.ChangeControlViewModel @{ ViewBag.Title = "Edit"; }
@using (Html.BeginForm()) { @Html.AntiForgeryToken()
Description of Change
@Html.TextAreaFor(model => model.ReasonForChange, 15, 30, new { id = "txtReasonForChange", @class = "form-control", Readonly = "Readonly", style = "background-color:lightblue; font-size: 11px;width: 100%;" })
|
Reason For Change
@Html.TextAreaFor(model => model.ChangeDescription, 15, 30, new { id = "txtChangeDescription", @class = "form-control", Readonly = "Readonly", style = "background-color:lightblue; 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", Readonly = "Readonly", style = "background-color:lightblue; width:100%;" }) | ||||||||||
Part Numbers
|
|
||||||||||
Tool Type
|
@Html.TextAreaFor(model => model.ToolTypes, 5, 50, new { id = "txtToolTypes", @class = "k-textbox", Readonly = "Readonly",style = "background-color:lightblue; 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) ) | @**@ |