Kendo オートコンプリートの dataTextField プロパティの 2 つのフィールドを結合したいと考えています。
私のデータソースには FirstName フィールドと LastName フィールドがあります。
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
}
}
}
}
}
FirstName + LastName を表示するようにオートコンプリートを設定する方法はありますか?
代わりにデータソースで何かをしなければならないかもしれません。その場合、誰かが簡単な例を提供できますか?
ありがとうございました!