I have a combobox as follows:
Later in my form, I have RadGridView where I have set up a trigger action on the double click. Now, when I double click an item from the RadGridView control, the combobox property gets updated to 'null'. I have NO ties b/w the combobox and the grid view controls.
Any ideas?
Tks.
<
telerik:RadComboBox
ItemsSource
=
"{Binding ReviewStatusOptionList}"
SelectedItem
=
"{Binding SelectedReviewStatusOption, Mode=TwoWay}"
ClearSelectionButtonContent
=
"Show all"
ClearSelectionButtonVisibility
=
"Visible"
DisplayMemberPath
=
"Value"
Height
=
"26"
CanAutocompleteSelectItems
=
"False"
VerticalAlignment
=
"Top"
/>
Later in my form, I have RadGridView where I have set up a trigger action on the double click. Now, when I double click an item from the RadGridView control, the combobox property gets updated to 'null'. I have NO ties b/w the combobox and the grid view controls.
Any ideas?
Tks.