This question is locked. New answers and comments are not allowed.
I have a grid view with a combo box column. I have subscribed to the selection changed event using this:
this.AddHandler(RadComboBox.SelectionChangedEvent,
new Telerik.Windows.Controls.SelectionChangedEventHandler(ComboBox_SelectionChanged));
I notice that the selection changed event gets triggered even when I just click on the cell with the combo box. The drop down has not been opened and hence no selection has been made, but even then the event is triggered. The event is triggered again after the drop down opens and I make a selection. I think this is a bug. If it is not, then is there a way I can differentiate between the two triggers - one that happens on the click and the second which happens after the selection is made.
this.AddHandler(RadComboBox.SelectionChangedEvent,
new Telerik.Windows.Controls.SelectionChangedEventHandler(ComboBox_SelectionChanged));
I notice that the selection changed event gets triggered even when I just click on the cell with the combo box. The drop down has not been opened and hence no selection has been made, but even then the event is triggered. The event is triggered again after the drop down opens and I make a selection. I think this is a bug. If it is not, then is there a way I can differentiate between the two triggers - one that happens on the click and the second which happens after the selection is made.