简体   繁体   中英

Put a dropdown arrow in RadAutoCompleteBox of Telerik

Is it possible to place a dropdown arrow in RadAutocomplete textbox, so that user can see what options are the list? Please see the screen shot 在此处输入图片说明

  <telerik:RadAutoCompleteBox
                            id="Variants" 
                            runat="server"
                            skin="Silk" EmptyMessage="Type here" DropDownPosition="Static" DropDownHeight="200px">

The Telerik doco states it's not possible to browse the items in the dropdown area when using a RadAutoCompleteBox.

See here: http://www.telerik.com/help/aspnet-ajax/autocompletebox-difference-with-combobox.html

I prefer using a regular RadComboBox with the following attributes eg

<telerik:RadComboBox runat="server" ID="ddlVariants" AppendDataBoundItems="True" EmptyMessage="Type or select a variant" MarkFirstMatch="True" AllowCustomText="True" Width="200px" CheckBoxes="True" />

This approach still allows multiple selection and dynamic filtering of items, with the ability to expand the items to manually search if required.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM