当用户单击 btnSubmit 时,我目前正在尝试为我的 Kendo UI DropDownList 实现验证摘要。如果用户选择“请选择”,则验证摘要将在“请选择产品列表”的验证摘要中显示错误。
我不确定我该怎么做。请指教
<script type="text/javascript">
$("#btnSubmit").click(function () {
var pList= $("#ProductList").data("kendoDropDownList").select();
});
</script>
索引.cshtml
@(Html.Kendo().DropDownList()
.Name("ProductList")
.HtmlAttributes(new { @Style = "width: 130px; margin:0.5em 0 0 0;height:20px;align:center; font-size:11px;" })
.OptionLabel("Please Select")
.DataTextField("OptionName")
.DataValueField("OptionID")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("GetProduct", "ProductDetails");
});
})
)
<div class="submit">
<input type="button" id="btnSubmit" style="height:50px; width:95px; font-size:13px; background-color: rgb(51, 153, 255); white-space: normal;" class="k-button" title="Submit" value="Submit" />
</div>
ProductDetailsController.cs
public JsonResult GetRole()
{
var productName = new ContexEntities();
return Json(productName.Product.Select(c => new { OptionID = c.OptionID, OptionName = c.OptionName, OptionTypeID = c.ConfigTypeID })
.OrderBy(c => c.OptionName).Where(e => e.OptionTypeID == 10), JsonRequestBehavior.AllowGet);
}