Hello,
How is the IsComboBoxEditable property works? I need to present a grid where one column is a combobox. The user can select one value from the list or enter a new value so I set the IsComboBoxEditable to true but the problem is that if the user types a value that is not in the ItemsSource the Text is blank when the combobox looses the focus. Can you please tell me what I'm doing wrong?
<Telerik:GridViewComboBoxColumn Header="Location" Width="110" IsComboBoxEditable="True"
SelectedValueMemberPath="Name"
DisplayMemberPath="Name"
DataMemberBinding="{Binding [Location]}"/>
In code I bind the Itemsource to the available list.
((
GridViewComboBoxColumn)tblTrain.Columns[2]).ItemsSource = GetTrainToFacilities();