This question is locked. New answers and comments are not allowed.
Hello, I have a hierarchical gridview defined as this :
In the function
So how can I get the selected cell in the child gridview? do I have to subscribe the child grid view to the CurrentCellChanged event?
Thanks for your help.
<views:PricingRadGridView CurrentCellChanged="radGridViewBaseTarification_CurrentCellChanged"> <views:PricingRadGridView.HierarchyChildTemplate> <DataTemplate> <telerikGridView:RadGridView > [...] </DataTemplate> </telerikGridView:RadGridView></views:PricingRadGridView>In the function
radGridViewBaseTarification_CurrentCellChanged I can get the selected cell in the parent gridview thanks to the currentcell property. However when I select a cell in the chid gridview the property currentcell sends me a null value. Why?So how can I get the selected cell in the child gridview? do I have to subscribe the child grid view to the CurrentCellChanged event?
Thanks for your help.