This is an issue with a dropdown we have on a page that does a full Postback every time an entry is selected.
1. Page loads and the text area of the RadComboBox is empty.
2. Type the first letter of several of the items. The dropdown is filtered to just those items and the first one is displayed in the text area.
3. Hit return to select that item, and the page refreshes.
4. The full text of the selected item is displayed in the text area.
5. Click on the downward-pointing caret to bring up the drop-down menu. The auto-complete is filtering out all entries except the current item. In order to have the other entries selected, the text area must be manually cleared.
We have other dropdowns that don't do a Postback, and they always display the full list when you click to display the dropdown. This is the desired behavior.
We are using the Q3 2008 version.
Thanks.
1. Page loads and the text area of the RadComboBox is empty.
2. Type the first letter of several of the items. The dropdown is filtered to just those items and the first one is displayed in the text area.
3. Hit return to select that item, and the page refreshes.
4. The full text of the selected item is displayed in the text area.
5. Click on the downward-pointing caret to bring up the drop-down menu. The auto-complete is filtering out all entries except the current item. In order to have the other entries selected, the text area must be manually cleared.
We have other dropdowns that don't do a Postback, and they always display the full list when you click to display the dropdown. This is the desired behavior.
We are using the Q3 2008 version.
Thanks.
<telerik:RadComboBox ID="UsernameWebComboAGMembership" runat="server" Height="190px" EnableEmbeddedSkins="false" Skin="IMCComboStyle" |
Width="320px" DropDownWidth="480px" MarkFirstMatch="true" OnDataBound="UsernameWebComboAGMembership_DataBound" EnableLoadOnDemand="true" HighlightTemplatedItems="true" |
ItemRequestTimeout="500" OnClientItemsRequested="UpdateItemCountField" AutoPostBack="true" |
OnItemsRequested="UsernameWebComboAGMembership_ItemsRequested" OnItemDataBound="UsernameWebComboAGMembership_ItemDataBound" |
OnSelectedIndexChanged="UsernameWebComboAGMembership_SelectedIndexChanged" > |
<HeaderTemplate> |
<ul> |
<li class="rcbColumn1">User Name</li> |
<li class="rcbColumn2">First Name</li> |
<li class="rcbColumn3">Surname</li> |
</ul> |
</HeaderTemplate> |
<ItemTemplate> |
<ul> |
<li class="rcbColumn1"><%# DataBinder.Eval(Container.DataItem, "UserName") %></li> |
<li class="rcbColumn2"><%# DataBinder.Eval(Container.DataItem, "FirstName") %></li> |
<li class="rcbColumn3"><%# DataBinder.Eval(Container.DataItem, "LastName") %></li> |
</ul> |
</ItemTemplate> |
<FooterTemplate> |
<asp:Label runat="server" ID="RadComboItemsCount" /> users |
</FooterTemplate> |
</telerik:RadComboBox> |