Articles in this section
Category / Section

How can I load the custom source in FxAutoComplete?

1 min read

Load the custom source

We can load the custom data dynamically using custom source property. CustomSource property will accept list type. We can make a collection with string type value and we could assign them into CustomSource property.

List <string> customSource = new List <string> ();
customSource.Add("C#");
customSource.Add("VB.Net");
customSource.Add("Asp.Net");
customSource.Add("J#.Net");
customSource.Add("Ajax");
customSource.Add("WPF");
customSource.Add("WCF");
customSource.Add("WWF");
customSource.Add("WC");
FxAutoCompleteObject.CustomSource = customSource;

 

Note:

For custom source you should set source property of FxAutoComplete as SourceMode.Custom. Ex: FxAutoCompleteObject.Source=SourceMode.Custom

Syncfusion Inc.

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied