Hello, Telerik Team! I began to study your library (trial), to see whether or not it is suitable for use in the production. And I have questions. Suppose we have RadGridView. One of the columns defined:
<telerik:GridViewComboBoxColumn Width="250"
Header="Класс"
DataMemberBinding="{Binding CurrentFeatureClass}"
ItemsSource="{Binding Path=FeatureClassesView, Mode=TwoWay}"
Name="FeatureClassesGridComboBox"
DisplayMemberPath="TypeName" />
In the model, which is the source of the data the FeatureClassesView is CollectionView for the ObservableCollection. But when I try to use SelectionChanged property of CollectionView it doesn't work. The items in the list I see, that is, binding occurred correctly. Previously, such a thing occurred, unless the property IsSynchronizedWithCurrentItem, But such a property, I just have not found (although it is DataGridComboBoxColumn in Microsoft standart library). Can you help me?
<telerik:GridViewComboBoxColumn Width="250"
Header="Класс"
DataMemberBinding="{Binding CurrentFeatureClass}"
ItemsSource="{Binding Path=FeatureClassesView, Mode=TwoWay}"
Name="FeatureClassesGridComboBox"
DisplayMemberPath="TypeName" />
In the model, which is the source of the data the FeatureClassesView is CollectionView for the ObservableCollection. But when I try to use SelectionChanged property of CollectionView it doesn't work. The items in the list I see, that is, binding occurred correctly. Previously, such a thing occurred, unless the property IsSynchronizedWithCurrentItem, But such a property, I just have not found (although it is DataGridComboBoxColumn in Microsoft standart library). Can you help me?