mine is like this, the source is been set with code behind, and it works, but I cannot select anything, when I select A value it go back to blank, why?
we want to text in values and the combobox must get it then click with mouse to select it, but then it turn to blank
allso we want to see what we text in like when IsEditable="True" , but when it is true then you can text in stuff and values we do not want the user to type in, the user must only type in stuff in the list, How can we solve this?
<telerik:RadComboBox
x:Name="EditCompleteBox"
Background="{StaticResource BrushBackgroundAllControls}"
Text=""
DisplayMemberPath="Value"
<telerik:RadComboBox
x:Name="EditCompleteBox"
Background="{StaticResource BrushBackgroundAllControls}"
Text=""
DisplayMemberPath="Value"
IsEditable="False"
telerik:TextSearch.TextPath="Value"
TextSearchMode="StartsWith"
CanKeyboardNavigationSelectItems="True"
IsMouseWheelEnabled="True"
SelectionChanged="EditCompleteBox_SelectionChanged"
KeyUp="EditCompleteBox_KeyUp"
Width="168" Height="33"
Loaded="EditCompleteBox_Loaded"
StaysOpenOnEdit="True"
OpenDropDownOnFocus="True"
VirtualizingStackPanel.VirtualizationMode="Recycling"
>