部分ビューで剣道オートコンプリートを使用したいのですが、1 つのビューにその多くがあるため、パラメーターを動的に取得する必要があります。データ機能で要素 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)
)