我想在部分视图中使用剑道自动完成功能,并且我在一个视图中有很多,因此我必须动态获取参数,有什么方法可以在 Data fanction 中获取元素 ID?我 $(this).val() 但它不起作用 :( ,我应该使用什么剂量?请帮助我 :( tihs 是我的代码:
@(Html.Kendo().AutoComplete()
.Name("Employee" + (string)Session["fileid"])
.Placeholder("Employee Name ...")
.Filter(FilterType.StartsWith)
.DataSource(source =>
{
source.Read(read =>
{
read.Action(
"GetEmployeeName",
"Proceeds")
.Data(
"function onAdditionalData() {return { text:$(this).val() };}");
})
.ServerFiltering(true);
})
.Events(e => { e.Open("onOpen");})
.Animation(true)
)