gpt4 book ai didi

jquery - 如何组合 Kendo UI 自动完成的 dataTextField 的两个字段?

转载 作者:行者123 更新时间:2023-12-03 22:30:40 24 4
gpt4 key购买 nike

我想组合 Kendo 自动完成的 dataTextField 属性的两个字段。

我的数据源有一个名字字段和一个姓氏字段。

schema: {
data: "d",
model: {
id: "PersonId",
fields: {
PersonId: {
type: "number",
editable: false // this field is not editable
},
FirstName: {
type: "text",
validation: { // validation rules
required: true // the field is required
}
},
LastName: {
type: "text",
validation: { // validation rules
required: true // the field is required
}
}
}
}
}

有没有办法配置自动完成以显示名字 + 姓氏?

也许我必须对数据源做一些事情,如果是这样的话,有人可以提供一个简单的例子吗?

谢谢!

最佳答案

您应该使用 template :

例如:

template:"The name is : #= FirstName # #=LastName #"

关于jquery - 如何组合 Kendo UI 自动完成的 dataTextField 的两个字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15117296/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com