This question is locked. New answers and comments are not allowed.
How can i find a combo box that inside of CellEdit template? I tried your extension method, but when i first click on the cell i am on reguler mode, so i think it tries to search in reguler cell template. Thanks, Amit
<telerik:GridViewDataColumn.CellEditTemplate>
<DataTemplate>
<ComboBox Name="_comboBoxAttributeValue" Loaded="OnComboBoxAttributeValueLoaded"
SelectionChanged="ComboBox_SelectionChanged">
<ComboBox.ItemTemplate>
<DataTemplate>
<CheckBox Content="{Binding Path=Name}" Click="CheckBox_Click" />
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
</DataTemplate>
</telerik:GridViewDataColumn.CellEditTemplate>