I have an Ajaxtool kit AutoComplete extender control that targets to a Text box. I am calling a web service and returning the values to bind to the AutoComplete extender and that works great. I am really wondering about how I can retrieve the AutoCompleteextender control's Item values in javascript, when an Item is selected.
When an item is selected I am capturing the selected value in javascript function by calling the function in OnClientItemSelected attribute.
<pre>function CallJS(source, eventArgs) {
alert('something got selected');
alert(eventArgs.get_value());
}
But I am not sure using which Javascript property or object I can get hold of the list of values in the AutoComplete extender control?