I have a Silverlight Autocompletebox to show a list of staff members, and it is working great. I get the data by loading a BusinessObjects list.
My problem is that the very first time you start typing something in the box, it takes close to 2 seconds to come back with suggestions. Afterwards, any subsequent searches seem almost instantaneous.
Obviously there must be some sort of lazy-loading happening here, it must somehow be configured to trigger on the initial use of the control.
I would like to somehow load the data when the control is first loaded, it would make for a better user experience if even on the first typing that the suggestions seem instant.
Does anyone know how I can do this?