I'm having difficulty using the autoComplete in a popup editor template.when the datasource for the autocomplete has separate value and text fields.
This example works fine if we use the firstName for both the data-value-field and data-text-field.
However, if we change the datasource to include a "fullname" property:
var autoCompleteDS = new kendo.data.DataSource({
data: [
{firstName: "Alex", fullName:"Alex Smith"},
{firstName: "Alice", fullName:"Alice Smith"},
{firstName: "Antony", fullName:"Antony Smith"},
{firstName: "Anne", fullName:"Anne Smith"},
{firstName: "Anna", fullName:"Anna Smith"}
]
});
And configure the autocomplete to reference this property:
<
input
name
=
"FirstName"
data-bind
=
"value:FirstName"
data-value-field
=
"firstName"
data-text-field
=
"fullName"
data-source
=
"autoCompleteDS"
data-role
=
"autocomplete"
/>
When we add a record, the record's firstName field is set to the fullName. I obviously have the binding specified incorrectly but I can't figure out what I've done wrong.
Thanks,
Todd