我Kendo.ComboBox
在Editor Template
.
当 Kendo.Grid 被填充时,这个模板在索引页面中被引用:
co.Bound(c => c.Name).Title("Property Name").EditorTemplateName("_MyEditor");
这是组合框:
@(Html.Kendo().ComboBox()
.Name("ReportProperty")
.DataTextField("PropertyName")
.DataValueField("ReportPropertyID")
.HtmlAttributes(new { id = "idCB" })
)
有一个事件触发,我想使用 Ajax 调用来填充这个 Kendo.ComboBox。
我不想使用.DataSource
Action 调用,我试过了,但它在我的情况下不起作用,所以我想Ajax
在特定事件上使用
这样做的正确方法是什么?