Hello,
I am trying to set the fields that autocomplete should search through in the data source. The data source looks like this:
[{ name: "Peter", Address: "34 Driving Drive"},
{name: "Mary", Address: "2 Walking Drive"}]
and my element looks like this:
<input type="text" class="ejinputtext form-control" ej-autocomplete e-datasource="customerList" e-mincharacter="3" e-fields='{key:"name", text:"name"}' />
This doesn't work thou, am I doing it correctly?