Hi Axel,
Greetings from Syncfusion support.
We have checked the reported requirement. We don't have string dataSource support for the autocomplete component. So as of now, you can convert the string array to list type as mentioned below code snippet
List<string> CountryList = new List<string> { "Australia", "Bermuda", "Canada", "Cameroon", "Denmark", "France" };
protected override void OnInitialized()
{
LocalData = CountryList.Select(x => new CountryData()
{
CountryName = x
}).ToList();
}
|
We have already considered it as feature, and it will be included in our upcoming volume-1 release. Which is expected to be rolled out on end of March 2020. We appreciate your patience until then. You can track the status of the feature in the below feedback link from below.
Regards,
Sureshkumar P