This question is locked. New answers and comments are not allowed.
I am currently using a column with RadComboBox in your RadGridView in Silverlight 3. I need to know how to access all comboboxes in the datagrid from the following event handler. Is this possible if so, how would you do it?
this code
this code
var
row = ((RadComboBox)sender).ParentOfType<GridViewRow>();
did not help since the sender had a null value for the parent property
SelectionChanged(
object sender, Telerik.Windows.Controls.SelectionChangedEventArgs e)
{
}