@Html.TextBoxFor(model => model.Title, new { id = "txtTitle", @class = "k-textbox", Readonly = "Readonly", style = "background-color:lightblue;width:100%" })
@Html.TextBoxFor(model => model.ChangeLevel, new { id = "txtChangeLevel", @class = "k-textbox", Readonly = "Readonly", style = "background-color:lightblue;width:100%" })
@*@(Html.Kendo().MultiSelect()
.Name("PCRB")
.DataTextField("Text")
.DataValueField("Value")
.BindTo(new List()
{
new SelectListItem()
{
Text = "Select",
Value = "Select"
},
new SelectListItem()
{
Text = "PCR1",
Value = "PCR1"
},
new SelectListItem()
{
Text = "PCR2",
Value = "PCR2"
},
new SelectListItem()
{
Text = "PCR3",
Value = "PCR3"
}
}
)
.Value(Model.PCRB.ToString())
)*@
@(Html.Kendo().MultiSelect()
.Name("PCRValueIDs")
.BindTo(new SelectList(ViewBag.PCRValues, "PCRValueID", "PCRValueName"))
.Value(ViewBag.Nothing)
)