I have buttons in a grid view which I am setting the click property. What I need to know is can I force the select row event before my method is called?
Right now this will call foo prior to selecting the row, so the method is being executed using the wrong row.
<telerik:GridViewColumn> <telerik:GridViewColumn.CellTemplate> <DataTemplate> <telerik:RadButton Content="Foo" Click="Foo"/> </DataTemplate> </telerik:GridViewColumn.CellTemplate> </telerik:GridViewColumn>
Right now this will call foo prior to selecting the row, so the method is being executed using the wrong row.