@(Html.Kendo().DropDownList()
.Name("CATypeList")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List()
{
new SelectListItem()
{
Text = "Upto D0",
Value = "D0"
},
new SelectListItem()
{
Text = "Upto D3",
Value = "D3"
},
new SelectListItem()
{
Text = "Upto D6",
Value = "D6"
}
,
new SelectListItem()
{
Text = "Upto D8",
Value = "D8"
}
}
)
.Value(Model.CAType)
)
@(Html.Kendo().DropDownList()
.Name("CAStandardTypeList")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List()
{
new SelectListItem()
{
Text = "IATF16949",
Value = "IATF16949"
},
new SelectListItem()
{
Text = "ISO14001",
Value = "ISO14001"
},
new SelectListItem()
{
Text = "ISO45001",
Value = "ISO45001"
}
}
)
.OptionLabel("Select")
.Value(Model.CAStandardType)
)
@Html.TextArea("txtRelatedAuditFindings", (string)(ViewBag.AuditFinding), new { @class = "form-control", name = "txtRelatedAuditFindings", Readonly = "Readonly", style = "background-color:lightblue" })
How we recognized the team:
@Html.TextAreaFor(model => model.D8TeamRecognition, 3, 100, new { id = "txtD8TeamRecognition", @class = "k-textbox", style = "font-size: 10px;width: 100%;" })