@Html.TextBoxFor(model => model.ApprovalStatus, new { id = "txtStatus", @class = "k-textbox", Readonly = "Readonly", style = "background-color:lightblue" })
@(Html.Kendo().DropDownList()
.Name("LotType")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List()
{
new SelectListItem()
{
Text = "Select",
Value = "Select"
},
new SelectListItem()
{
Text = "E",
Value = "E"
},
new SelectListItem()
{
Text = "P" ,
Value = "P"
}
}
)
.Value(Model.LotType.ToString())
)
@Html.CheckBoxFor(model => model.IsITAR, new { @disabled = "disabled" })
@Html.TextBoxFor(model => model.PCRBNumber, new { id = "txtPCRBNumber", @class = "k-textbox" })
@(Html.Kendo().DropDownList()
.Name("EngLotStartRequired")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List()
{
new SelectListItem()
{
Text = "Select",
Value = "-1"
},
new SelectListItem()
{
Text = "Yes",
Value = "1"
},
new SelectListItem()
{
Text = "No",
Value = "0"
}
}
)
.Value(Model.EngLotStartRequired.ToString())
)
@(Html.Kendo().DropDownList()
.Name("LotTypeConversion")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List()
{
new SelectListItem()
{
Text = "Select",
Value = "-1"
},
new SelectListItem()
{
Text = "Yes",
Value = "1"
},
new SelectListItem()
{
Text = "No",
Value = "0"
}
}
)
.Value(Model.LotTypeConversion.ToString())
)
@(Html.Kendo().DropDownList()
.Name("QualLot")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List()
{
new SelectListItem()
{
Text = "Select",
Value = "-1"
},
new SelectListItem()
{
Text = "Yes",
Value = "1"
},
new SelectListItem()
{
Text = "No",
Value = "0"
}
}
)
.Value(Model.QualLot.ToString())
)
@Html.TextAreaFor(model => model.PurposeOfRequest, 15, 100, new { id = "txtPurposeOfRequest", @class = "k-textbox", style = "font-size: 11px; width: 100%" })
@Html.TextBoxFor(model => model.ChargeDepartment, new { id = "txtChargeDepartment", @class = "k-textbox" })
@(Html.Kendo().DropDownList()
.Name("AllocationToUse")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List()
{
new SelectListItem()
{
Text = "Select",
Value = "Select"
},
new SelectListItem()
{
Text = "ATV",
Value = "ATV"
},
new SelectListItem()
{
Text = "HiRel",
Value = "HiRel"
},
new SelectListItem()
{
Text = "IPC",
Value = "IPC"
},
new SelectListItem()
{
Text = "PMD",
Value = "PMD"
},
new SelectListItem()
{
Text = "Fab",
Value = "Fab"
},
new SelectListItem()
{
Text = "Silicon",
Value = "Silicon"
}
}
)
.Value((Model.AllocationToUse == null? "Select" : Model.AllocationToUse.ToString()))
)
@Html.TextBoxFor(model => model.PredictedCyleTime, new { id = "txtPredictedCyleTime", @class = "k-textbox" })
@Html.TextBoxFor(model => model.TotalQty, new { id = "txtTotalQty", @class = "k-textbox" })
@*
@Html.TextBoxFor(model => model.SignOn, new { id = "txtSignOn", @class = "k-textbox", Readonly = "Readonly", style = "background-color:lightblue" })
@Html.TextBoxFor(model => model.WIPArea, new { id = "txtWIPArea", @class = "k-textbox", Readonly = "Readonly", style = "background-color:lightblue" })
@Html.TextBoxFor(model => model.Verb1, new { id = "txtVerb1", @class = "k-textbox", Readonly = "Readonly", style = "background-color:lightblue" })
*@
@Html.TextBoxFor(model => model.LotNumber, new { id = "txtLotNumber", @class = "k-textbox" })
@Html.TextBoxFor(model => model.WIPPartNumber, new { id = "txtWIPPartNumber", Readonly = "Readonly", @class = "k-textbox", style = "background-color:lightblue; width:90px" })
@Html.TextBoxFor(model => model.ProcessFlow, new { id = "txtProcessFlow", @class = "k-textbox", Readonly = "Readonly", style = "background-color:lightblue" })
@Html.TextBoxFor(model => model.StartQty, new { id = "txtStartQty", @class = "k-textbox", Readonly = "Readonly", style = "background-color:lightblue" })
@Html.TextBoxFor(model => model.PartDescription, new { id = "txtPartDescription", @class = "k-textbox", Readonly = "Readonly", style = "background-color:lightblue; width:200px" })
@*
@Html.EditorFor(model => model.QualLot)
*@
@(Html.Kendo().DropDownList()
.Name("RecordSiliconLotInSPNTapeTagTotrav")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List()
{
new SelectListItem()
{
Text = "Select",
Value = "-1"
},
new SelectListItem()
{
Text = "Yes",
Value = "1"
},
new SelectListItem()
{
Text = "No",
Value = "0"
}
}
)
.Value(Model.RecordSiliconLotInSPNTapeTagTotrav.ToString())
)
@Html.TextAreaFor(model => model.SiliconLotNoCassette1, 5, 100, new { id = "txtSiliconLotNoCassette1", @class = "k-textbox", style = "font-size: 11px; width: 100%" })
@Html.TextAreaFor(model => model.VerbComment, 5, 100, new { id = "txtVerbComment", @class = "k-textbox", style = "font-size: 11px; width: 100%" })
@*
@Html.TextAreaFor(model => model.VerbComment, 11, 100, new { id = "txtVerbComment", @class = "k-textbox", style = "font-size: 11px; width: 100%" })
@(Html.Kendo().DropDownList()
.Name("WRAttachDocType")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List() {
new SelectListItem() {
Text = "Select",
Value = "Select"
},
new SelectListItem() {
Text = "Instructions",
Value = "Instructions"
},
new SelectListItem() {
Text = "Traveler",
Value = "Traveler"
},
new SelectListItem() {
Text = "Other",
Value = "Other"
}
})
.Value("1")
.HtmlAttributes(new { style = "width:100px;" })
)