Dear All,
I am using the RadAutoCompleteBox as follows. I would like to display all Products when pressing the "Keyboard Down Arrow" on the RadAutoCompleteBox. Is this possible?
<telerik:RadAutoCompleteBox Height="23" Width="180" Background="#FFEDF4AB" Margin="3,0,0,0"
ItemsSource="{Binding Products}"
SelectedItem="{Binding SelectedProductItem, Mode=TwoWay}"
SelectionMode="Single"
TextSearchMode="StartsWith"
SearchText="{Binding Name, Mode=TwoWay}"
TextSearchPath="Name"
DisplayMemberPath="Name"
AutoCompleteMode="Suggest" >
<telerik:RadAutoCompleteBox.DropDownItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}" FontWeight="Bold" Foreground="Black" Width="200" />
</StackPanel>
</DataTemplate>
</telerik:RadAutoCompleteBox.DropDownItemTemplate>
<Behaviors:Interaction.Triggers>
<Behaviors:EventTrigger EventName="SelectionChanged">
<Behaviors:InvokeCommandAction Command="{Binding SelectProductCommand}" />
</Behaviors:EventTrigger>
</Behaviors:Interaction.Triggers>
</telerik:RadAutoCompleteBox>