Hi
I have the following markup defining an autocomplete box and the event handler function.
The autocompletebox works fine - that it displays the suggestions as I type and I can select / remove entries.
Unfortunately when I change the autocomplete selection (add or remove selected entries) the OnEntryAdded / OnEntryRemoved are not being fired. Any idea what I might be missing?
I might be missing something very basic here... but I just don't see it.
Any help will be most appreciated.
Thanks
I have the following markup defining an autocomplete box and the event handler function.
The autocompletebox works fine - that it displays the suggestions as I type and I can select / remove entries.
Unfortunately when I change the autocomplete selection (add or remove selected entries) the OnEntryAdded / OnEntryRemoved are not being fired. Any idea what I might be missing?
I might be missing something very basic here... but I just don't see it.
Any help will be most appreciated.
Thanks
<telerik:RadAutoCompleteBox ID="OperatorAutoCompleteBox" runat="server" DropDownHeight="150" EmptyMessage="(Select Operator)" DataSourceID="sqlOperatorsLookupList" DataTextField="Full_Name" DataValueField="Operator_ID" Filter="Contains" InputType="Text" OnEntryAdded="OperatorAutoCompleteBox_SelectedOperatorChanged" OnEntryRemoved="OperatorAutoCompleteBox_SelectedOperatorChanged" AutoPostBack="true"> </telerik:RadAutoCompleteBox>
Protected Sub OperatorAutoCompleteBox_SelectedOperatorChanged(sender As Object, e As AutoCompleteEntryEventArgs)
do something here...
End Sub
