Hi,
The auto complete is not give me any result when I type something in the input.
I only receive some of the results when i hit the down or up key from the keyboard. I need to use object data and not array how is specified in the example provided here: https://ej2.syncfusion.com/vue/documentation/auto-complete/getting-started/.
Here is my implementation:
<ejs-autocomplete :focus="focus" :blur="blur" name="search" :highlight='highlight' :dataSource='this.$store.state.userModule.users' :fields='fields' :placeholder="waterMark" v-model="selectedUserId"></ejs-autocomplete>
This is the structure that dataSource is receives :
[
{
"id": "475daec4-40b1-4bfe-87ca-4175b245441d",
"firstName": "Wolfgang",
"lastName": "Wolfgang",
"unifiedName": "Wolfgang"
},
{
"id": "048d5af0-8caa-4cc7-acc8-06dc52419b40",
"firstName": "Andreas34",
"lastName": "Andreas",
"unifiedName": "Andreas"
}
]