I have an autocomplete connecting to a WCF web serivce that returns data a JSON string.
Here is how I create the autocomplete:
The data returned is a JSON string as follows:
Nothing actually shows inside the autocomplete box... Am I missing something...
Here is how I create the autocomplete:
var search = $("#searchBox").kendoAutoComplete({
minLength: 3,
separator: ", ",
dataSource: {
type: "json",
transport: {
read: "../getTitles",
parameterMap: function() {
return { sku: $("#searchBox").data("kendoAutoComplete").value() };
}
}
}
});
The data returned is a JSON string as follows:
["Test", "Test 2", "Test 3"]
Nothing actually shows inside the autocomplete box... Am I missing something...