我在 Web 应用程序中有 KendoDropdownlist
@(Html.Kendo().DropDownList()
.HtmlAttributes(new { @style = "width: 200px;" })
.Name("cbStatusFilter" + i)
.DataTextField("Name")
.DataValueField("Id")
.TemplateId("tpStatusFilter")
.BindTo((System.Collections.Generic.IEnumerable<dynamic>)ViewData["statuses"])
.Events(c => c.Select("cbFilter_Select").Close("cbFilter_Close"))
)
它有以下模板
<script type="text/x-kendo-template" id="tpStatusFilter">
<input type="checkbox" id="#= Name #" name="#= Name #" value="#= Id #" class="check-input-status" #=selected ? "checked" :"" # />
<label for="#= Name #">#= Name #</label>
</script>
当使用下拉列表中的选择项时,下拉列表会关闭。但是当我单击其他控件时,我想保持打开状态并想关闭它我该如何实现?谢谢