I need to manually select the first list matching item and turn it into a token.
Reading the documentation I think that the way to go would be within the example below:
var
autoComplete = $find(
"<%= RadAutoCompleteBox1.ClientID %>"
);
var
newEntry = autoComplete.createEntry(
'Text'
,
'Value'
);
var
entries = autoComplete.get_entries();
entries.add(newEntry);
However instead to create newEntry manually I need to capture the first item in the list that matches user typing (text and value). Any idea?
Thanks!