是否可以在RadAutocomplete文本框中放置下拉箭头,以便用户可以查看列表中的哪些选项?请参见屏幕截图
<telerik:RadAutoCompleteBox
id="Variants"
runat="server"
skin="Silk" EmptyMessage="Type here" DropDownPosition="Static" DropDownHeight="200px">
答案 0 :(得分:2)
Telerik doco声明在使用RadAutoCompleteBox时无法浏览下拉区域中的项目。
见这里:http://www.telerik.com/help/aspnet-ajax/autocompletebox-difference-with-combobox.html
我更喜欢使用具有以下属性的常规RadComboBox,例如
<telerik:RadComboBox runat="server" ID="ddlVariants" AppendDataBoundItems="True" EmptyMessage="Type or select a variant" MarkFirstMatch="True" AllowCustomText="True" Width="200px" CheckBoxes="True" />
此方法仍允许对项目进行多项选择和动态过滤,并能够根据需要将项目展开以手动搜索。