This question is locked. New answers and comments are not allowed.
Hi
I created a GridViewColumn which contains a RadButton. See xaml below. When the Click event is executed how do I get access to the row containing the button that was clicked.
Thanks
Rich
I created a GridViewColumn which contains a RadButton. See xaml below. When the Click event is executed how do I get access to the row containing the button that was clicked.
Thanks
Rich
<telerik:GridViewColumn Header=""> <telerik:GridViewColumn.CellTemplate> <DataTemplate> <telerik:RadButton Click="FilterButton_Click" IsBackgroundVisible="False" ToolTipService.ToolTip="Search criteria" Margin="0"> <Image Source="Images2/Filter_16.png" Height="16" Width="16"></Image> </telerik:RadButton> </DataTemplate> </telerik:GridViewColumn.CellTemplate> </telerik:GridViewColumn>