I would like to call some code to populate the AutoComplete control. I would like to get the data from another service in my application, like a data layer.
I have found the DataManager, however, is this really required? or is there a simpler option?
If it is required then I understand i have to make a custom DataManager and override the Read method and return the data. However, I would need to initialize the DataManager with references to my data layer services and this doesn't seem possible.
What is the appropriate way to meet this scenario?