or
i'm using ASP>NET AJAX RadAutoCompleteBox. I set the DatasourceId its working fine. I can go through the filtered items with "UP" and "Down" keys, but I want to select an item with "TAB" and "ENTER" Key. When I hit TAB or ENTER on dropdown item it should select that item and the OnTextChanged Event should fire.
I checked the Demo there its selecting when I hit TAB & Enter. But on my screen its not working. Is I missed or messed something.
My code for your reference.
Thanks,

SelectCommand="select * from dogtraining where fidnr = @fidnr Order By datum DESC"<GroupByExpressions> <telerik:GridGroupByExpression> <SelectFields> <telerik:GridGroupByField FieldName="weeknumber" FieldAlias="Vecka" /> </SelectFields> <GroupByFields> <telerik:GridGroupByField FieldName="weeknumber" /> </GroupByFields> </telerik:GridGroupByExpression></GroupByExpressions>
<telerik:RadListBox ID="rlb" runat="server" SelectionMode="Multiple"> <Items> <telerik:RadListBoxItem Text="aaa" /> <telerik:RadListBoxItem Text="bbb" Enabled="false" /> <telerik:RadListBoxItem Text="ccc" /> </Items> </telerik:RadListBox>