This question is locked. New answers and comments are not allowed.
I have a RadGridView, inside which I have a GridViewComboboxColumn. It looks like this.
I seem to be facing this issue. I require two clicks for the drop down box to open. I have read from many different posts here, people have had similar problems, but most of them were WPF in which case I could write a listener for ValueChanged or SelectionChanged. But this is Silverlight and I havent found a property for ValueChaned on RadGridView or GridViewComboBoxColumn. Any ideas on how to have the drop down show upon on click of the Combobox column?
On a similar note, I see that the item that I select from the combo box does not get bound to the property in view model until I focus elsewhere on the grid. In other words, I double click the combobox, select an item from the drop down, at this moment I expect "SelectSourceId" to be bound with value that I selected, but it is not until I click elsewhere in the grid the value is bound.
Any ideas what is happening here? Any help would be greatly appreciated
(PS i realize that these two might be two separate issues, if it is I apologize for posting it under the same thread)
Thanks
K
<
telerikGrid:GridViewComboBoxColumn
Header
=
"Data Source"
ItemsSourceBinding
=
"{Binding Sources}"
DataMemberBinding
=
"{Binding SelectedSourceId}"
DisplayMemberPath
=
"SourceName"
SelectedValueMemberPath
=
"sourceId"
EditTriggers
=
"CellClick"
></
telerikGrid:GridViewComboBoxColumn
>
I seem to be facing this issue. I require two clicks for the drop down box to open. I have read from many different posts here, people have had similar problems, but most of them were WPF in which case I could write a listener for ValueChanged or SelectionChanged. But this is Silverlight and I havent found a property for ValueChaned on RadGridView or GridViewComboBoxColumn. Any ideas on how to have the drop down show upon on click of the Combobox column?
On a similar note, I see that the item that I select from the combo box does not get bound to the property in view model until I focus elsewhere on the grid. In other words, I double click the combobox, select an item from the drop down, at this moment I expect "SelectSourceId" to be bound with value that I selected, but it is not until I click elsewhere in the grid the value is bound.
Any ideas what is happening here? Any help would be greatly appreciated
(PS i realize that these two might be two separate issues, if it is I apologize for posting it under the same thread)
Thanks
K